| 29 #include "debug.h" |
29 #include "debug.h" |
| 30 |
30 |
| 31 G_BEGIN_DECLS |
31 G_BEGIN_DECLS |
| 32 |
32 |
| 33 /** |
33 /** |
| |
34 * pidgin_debug_init: |
| |
35 * |
| 34 * Initializes the GTK+ debug system. |
36 * Initializes the GTK+ debug system. |
| 35 */ |
37 */ |
| 36 void pidgin_debug_init(void); |
38 void pidgin_debug_init(void); |
| 37 |
39 |
| 38 /** |
40 /** |
| |
41 * pidgin_debug_uninit: |
| |
42 * |
| 39 * Uninitialized the GTK+ debug system. |
43 * Uninitialized the GTK+ debug system. |
| 40 */ |
44 */ |
| 41 void pidgin_debug_uninit(void); |
45 void pidgin_debug_uninit(void); |
| 42 |
46 |
| 43 /** |
47 /** |
| |
48 * pidgin_debug_get_handle: |
| |
49 * |
| 44 * Get the handle for the GTK+ debug system. |
50 * Get the handle for the GTK+ debug system. |
| 45 * |
51 * |
| 46 * Returns: the handle to the debug system |
52 * Returns: the handle to the debug system |
| 47 */ |
53 */ |
| 48 void *pidgin_debug_get_handle(void); |
54 void *pidgin_debug_get_handle(void); |
| 49 |
55 |
| 50 /** |
56 /** |
| |
57 * pidgin_debug_window_show: |
| |
58 * |
| 51 * Shows the debug window. |
59 * Shows the debug window. |
| 52 */ |
60 */ |
| 53 void pidgin_debug_window_show(void); |
61 void pidgin_debug_window_show(void); |
| 54 |
62 |
| 55 /** |
63 /** |
| |
64 * pidgin_debug_window_hide: |
| |
65 * |
| 56 * Hides the debug window. |
66 * Hides the debug window. |
| 57 */ |
67 */ |
| 58 void pidgin_debug_window_hide(void); |
68 void pidgin_debug_window_hide(void); |
| 59 |
69 |
| 60 /** |
70 /** |
| |
71 * pidgin_debug_get_ui_ops: |
| |
72 * |
| 61 * Returns the UI operations structure for GTK+ debug output. |
73 * Returns the UI operations structure for GTK+ debug output. |
| 62 * |
74 * |
| 63 * Returns: The GTK+ UI debug operations structure. |
75 * Returns: The GTK+ UI debug operations structure. |
| 64 */ |
76 */ |
| 65 PurpleDebugUiOps *pidgin_debug_get_ui_ops(void); |
77 PurpleDebugUiOps *pidgin_debug_get_ui_ops(void); |