| 1 | #if defined(_WCHAR_T_DEFINED) | |
| 2 | typedef void (__cdecl *POGOAUTOSWEEPPROCW)(const wchar_t *); |
| Lines 3 ... 6 are skipped. |
| 7 | ||
| 8 | #ifdef __cplusplus | |
| 9 | extern "C" | |
| 10 | #else | |
| 11 | extern | |
| 12 | #endif | |
| 13 | POGOAUTOSWEEPPROCW PogoAutoSweepW; | |
| 14 | #ifdef __cplusplus | |
| 15 | extern "C" | |
| 16 | #else | |
| 17 | extern | |
| 18 | #endif | |
| 19 | POGOAUTOSWEEPPROCA PogoAutoSweepA; | |
| 20 | ||
| 21 | #ifdef UNICODE | |
| 22 | #define PgoAutoSweep PogoAutoSweepW | |
| 23 | #else | |
| 24 | #define PgoAutoSweep PogoAutoSweepA | |
| 25 | #endif | |
| 26 | ||