File: AGProxyDebug.h

package info (click to toggle)
agsync 0.2-pre-9
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,044 kB
  • ctags: 1,183
  • sloc: ansic: 9,979; sh: 8,390; makefile: 86
file content (31 lines) | stat: -rw-r--r-- 580 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
25
26
27
28
29
30
31
#if defined(_WIN32) && !defined(_WCE)

#ifndef __AGPROXYDEBUG_H__
#define __AGPROXYDEBUG_H__
/*
 * Copyright 1999 AvantGo, Inc. All rights reserved.
 *
 * AGProxyDebug.h
 *
 * This file contains the functions will write to a buffer 
 * which is protected by a mutex.
 *
 */

#include <AGClientProcessor.h>

#ifdef __cplusplus
extern "C" {
#endif

ExportFunc void proxyDebugInit(AGClientProcessor *cp);
ExportFunc int  proxyDebug(AGClientProcessor *cp, const char *fmt, ...);
ExportFunc void proxyDebugCleanup(AGClientProcessor *cp);

#ifdef __cplusplus
}
#endif 

#endif
#endif