pgobootrun.h 694 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * This file has no copyright assigned and is placed in the Public Domain.
  3. * This file is part of the mingw-w64 runtime package.
  4. * No warranty is given; refer to the file DISCLAIMER.PD within this package.
  5. */
  6. #include <_mingw_unicode.h>
  7. #ifdef _WCHAR_T_DEFINED
  8. typedef void (__cdecl *POGOAUTOSWEEPPROCW)(const wchar_t *);
  9. #else
  10. typedef void (__cdecl *POGOAUTOSWEEPPROCW)(const unsigned short *);
  11. #endif
  12. typedef void (__cdecl *POGOAUTOSWEEPPROCA)(const char *);
  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. #define PgoAutoSweep __MINGW_NAME_AW(PogoAutoSweep)