Leaked source code of windows server 2003
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.

20 lines
549 B

  1. #ifndef _MIRSTYLS_H_
  2. #define _MIRSTYLS_H_
  3. #define PrivateWS_EX_LAYOUTRTL 0x00400000
  4. #define PrivateWS_EX_NOINHERITLAYOUT 0x00100000
  5. #if (WINVER >= 0x0500)
  6. #if WS_EX_LAYOUTRTL != PrivateWS_EX_LAYOUTRTL
  7. #error inconsistant WS_EX_LAYOUTRTL in winuser.h
  8. #endif
  9. #if WS_EX_NOINHERITLAYOUT != PrivateWS_EX_NOINHERITLAYOUT
  10. #error inconsistant WS_EX_NOINHERITLAYOUT in winuser.h
  11. #endif
  12. #else
  13. #define WS_EX_LAYOUTRTL PrivateWS_EX_LAYOUTRTL
  14. #define WS_EX_NOINHERITLAYOUT PrivateWS_EX_NOINHERITLAYOUT
  15. #endif
  16. #endif