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.

59 lines
1.8 KiB

  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently,
  3. // but are changed infrequently
  4. #if !defined(AFX_STDAFX_H__3964D994_AC96_11D1_9851_00C04FD91972__INCLUDED_)
  5. #define AFX_STDAFX_H__3964D994_AC96_11D1_9851_00C04FD91972__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #ifndef STRICT
  10. #define STRICT
  11. #endif
  12. #define _ATL_APARTMENT_THREADED
  13. #define _ATL_NO_DEBUG_CRT // use the shell debug facilities
  14. #ifdef ATL_ENABLED
  15. #define _ATL_NO_UUIDOF
  16. extern "C"
  17. inline HRESULT __stdcall OleCreatePropertyFrame(
  18. HWND hwndOwner, //Parent window of property sheet dialog box
  19. UINT x, //Horizontal position for dialog box
  20. UINT y, //Vertical position for dialog box
  21. LPCOLESTR lpszCaption,
  22. //Pointer to the dialog box caption
  23. ULONG cObjects, //Number of object pointers in lplpUnk
  24. LPUNKNOWN FAR* lplpUnk,
  25. //Pointer to the objects for property sheet
  26. ULONG cPages, //Number of property pages in lpPageClsID
  27. LPCLSID lpPageClsID,
  28. //Array of CLSIDs for each property page
  29. LCID lcid, //Locale identifier for property sheet locale
  30. DWORD dwReserved, //Reserved
  31. LPVOID lpvReserved //Reserved
  32. )
  33. {
  34. return S_OK;
  35. }
  36. #endif
  37. #include <debug.h>
  38. #include <atlbase.h>
  39. //You may derive a class from CComModule and use it if you want to override
  40. //something, but do not change the name of _Module
  41. extern CComModule _Module;
  42. #include <atlcom.h>
  43. #include <atlctl.h>
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_STDAFX_H__3964D994_AC96_11D1_9851_00C04FD91972__INCLUDED)