Reactos
1/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
6#ifdef _WCHAR_T_DEFINED
7typedef void (__cdecl *POGOAUTOSWEEPPROCW)(const wchar_t *);
8#else
9typedef void (__cdecl *POGOAUTOSWEEPPROCW)(const unsigned short *);
10#endif
11typedef void (__cdecl *POGOAUTOSWEEPPROCA)(const char *);
12
13#ifdef __cplusplus
14extern "C"
15#else
16extern
17#endif
18POGOAUTOSWEEPPROCW PogoAutoSweepW;
19#ifdef __cplusplus
20extern "C"
21#else
22extern
23#endif
24POGOAUTOSWEEPPROCA PogoAutoSweepA;
25
26#ifdef UNICODE
27#define PgoAutoSweep PogoAutoSweepW
28#else
29#define PgoAutoSweep PogoAutoSweepA
30#endif