afxres.h 543 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. #ifndef _AFXRES_H
  7. #define _AFXRES_H
  8. #if __GNUC__ >= 3
  9. #pragma GCC system_header
  10. #endif
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #ifndef _INC_WINDOWS
  15. #include <windows.h>
  16. #endif
  17. /* IDC_STATIC is documented in winuser.h, but not defined. */
  18. #ifndef IDC_STATIC
  19. #define IDC_STATIC (-1)
  20. #endif
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif