2019-09-02 19:34:56 +02:00
|
|
|
#ifndef XPC_DEBUG_H
|
|
|
|
|
#define XPC_DEBUG_H
|
|
|
|
|
|
2024-06-22 19:45:25 +10:00
|
|
|
#include <stdio.h>
|
2019-09-02 19:34:56 +02:00
|
|
|
#include "xpc.h"
|
|
|
|
|
|
2024-06-22 19:45:25 +10:00
|
|
|
typedef void (*xpc_debug_write)(const char *str, void *userData);
|
2019-09-02 19:34:56 +02:00
|
|
|
|
2024-06-22 19:45:25 +10:00
|
|
|
void xpc_debug_print(xpc_object_t obj, xpc_debug_write out, void *userData);
|
2019-09-02 19:34:56 +02:00
|
|
|
void xpc_debug_print_stdout(xpc_object_t obj);
|
2024-06-22 19:45:25 +10:00
|
|
|
void xpc_debug_print_helper(xpc_object_t obj, FILE *outFile);
|
2019-09-02 19:34:56 +02:00
|
|
|
|
|
|
|
|
#endif //XPC_DEBUG_H
|