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.

37 lines
1.3 KiB

  1. /******************************Module*Header*******************************\
  2. * Module Name: wowcmndg.h *
  3. * *
  4. * Defines used between WOW and common dialogs. *
  5. * *
  6. * Created: 6-July-1994 *
  7. * *
  8. * Copyright (c) 1994-1998 Microsoft Corporation *
  9. \**************************************************************************/
  10. #ifndef _WOWCMNDG_H_
  11. #define _WOWCMNDG_H_
  12. //
  13. // Used by various common dialogs to know that a WOW app
  14. // is calling it.
  15. //
  16. #define PD_WOWAPP 0x80000000
  17. #define CD_WOWAPP PD_WOWAPP
  18. // Enable WOW to tell ComDlg32 which type of struct we want to thunk
  19. // via Ssync_ANSI_UNICODE_Struct_For_WOW() export
  20. #define WOW_CHOOSECOLOR 1
  21. #define WOW_CHOOSEFONT 2
  22. #define WOW_OPENFILENAME 3
  23. #define WOW_PRINTDLG 4
  24. //
  25. // Used by Wx86 whcdlg32.dll to know that a Wx86 app
  26. // is calling it. See windows\shell\comdlg\fileopen.h for the
  27. // reason why it is not 0x40000000.
  28. //
  29. #define CD_WX86APP 0x04000000
  30. #endif // ifndef _WOWCMNDG_H_