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.

29 lines
550 B

  1. /*
  2. * PRECOMP.H
  3. *
  4. * This file is used to precompile the OLEDLG.H header file
  5. *
  6. * Copyright (c)1992 Microsoft Corporation, All Right Reserved
  7. */
  8. // only STRICT compiles are supported
  9. #ifndef STRICT
  10. #define STRICT
  11. #endif
  12. #include "oledlg.h"
  13. #include "olestd.h"
  14. #include "resource.h"
  15. #include "commctrl.h"
  16. #ifndef WM_NOTIFY
  17. // WM_NOTIFY is new in later versions of Win32
  18. #define WM_NOTIFY 0x004e
  19. typedef struct tagNMHDR
  20. {
  21. HWND hwndFrom;
  22. UINT idFrom;
  23. UINT code;
  24. } NMHDR;
  25. #endif //!WM_NOTIFY