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 7 typedef void (__cdecl *POGOAUTOSWEEPPROCW)(const wchar_t *); 8 #else 9 typedef void (__cdecl *POGOAUTOSWEEPPROCW)(const unsigned short *); 10 #endif 11 typedef void (__cdecl *POGOAUTOSWEEPPROCA)(const char *); 12 13 #ifdef __cplusplus 14 extern "C" 15 #else 16 extern 17 #endif 18 POGOAUTOSWEEPPROCW PogoAutoSweepW; 19 #ifdef __cplusplus 20 extern "C" 21 #else 22 extern 23 #endif 24 POGOAUTOSWEEPPROCA PogoAutoSweepA; 25 26 #ifdef UNICODE 27 #define PgoAutoSweep PogoAutoSweepW 28 #else 29 #define PgoAutoSweep PogoAutoSweepA 30 #endif 31