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.

24 lines
493 B

  1. //
  2. // APITHK.H
  3. //
  4. #ifndef _APITHK_H_
  5. #define _APITHK_H_
  6. #if (WINVER >= 0x0500)
  7. #else
  8. #define TVS_EX_NOSINGLECOLLAPSE 0x00000001 // for now make this internal
  9. #endif
  10. STDAPI_(DWORD) NT5_GetSaveFileNameW(LPOPENFILENAMEW pofn);
  11. STDAPI_(PROPSHEETPAGE*) Whistler_AllocatePropertySheetPage(int numPages, DWORD* pc);
  12. STDAPI_(HPROPSHEETPAGE) Whistler_CreatePropertySheetPageW(LPCPROPSHEETPAGEW a);
  13. #undef GetSaveFileNameW
  14. #define GetSaveFileNameW NT5_GetSaveFileNameW
  15. #endif // _APITHK_H_