Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
551 B

  1. #ifndef _COMCTL32_UNIXSTUFF_H_
  2. #define _COMCTL32_UNIXSTUFF_H_
  3. #define ARROW_WIDTH 4
  4. #define ARROW_HEIGHT 4
  5. #define CHECK_FREE( ptr ) { if(ptr) { free(ptr); ptr = NULL; } }
  6. STDAPI_(void) UnixPaintArrow(HDC hDC, BOOL bHoriz, BOOL bDown, int nXCenter, int nYCenter, int nWidth, int nHeight);
  7. /* We need this for the unaligned template classes to work after
  8. * fixing the mmsystem.h header.
  9. */
  10. #if defined(MWBIG_ENDIAN)
  11. #ifdef mmioFOURCC
  12. #undef mmioFOURCC
  13. #endif
  14. #define mmioFOURCC(ch0, ch1, ch2, ch3) MAKEFOURCC(ch3, ch2, ch1, ch0)
  15. #endif
  16. #endif