File: gam_debugging.h

package info (click to toggle)
gamin 0.1.10-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,784 kB
  • sloc: ansic: 10,675; sh: 8,915; python: 3,706; xml: 1,303; makefile: 318; awk: 48
file content (24 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __GAM_DEBUGGING_H__
#define __GAM_DEBUGGING_H__

#include <glib.h>
#include "gam_event.h"
#include "gam_connection.h"

G_BEGIN_DECLS

typedef enum {
    GAMDnotifyCreate=1,
    GAMDnotifyDelete=2,
    GAMDnotifyChange=3,
    GAMDnotifyFlowOn=4,
    GAMDnotifyFlowOff=5
} GAMDebugEvent;

void gam_debug_add(GamConnDataPtr conn, const char *value, int options);
void gam_debug_release(GamConnDataPtr conn);
void gam_debug_report(GAMDebugEvent event, const char *value, int extra);

G_END_DECLS

#endif /* __GAM_DEBUGGING_H__ */