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.

18 lines
585 B

  1. #ifndef _AWTHUNK_H_
  2. #define _AWTHUNK_H_
  3. // The following functions were originally only TCHAR versions
  4. // in Win95, but now have A/W versions. Since we still need to
  5. // run on Win95, we need to treat them as TCHAR versions and
  6. // undo the A/W #define
  7. #ifdef SHGetSpecialFolderPath
  8. #undef SHGetSpecialFolderPath
  9. #endif
  10. #define SHGetSpecialFolderPath _AorW_SHGetSpecialFolderPath
  11. // Define the prototypes for each of these forwarders...
  12. EXTERN_C BOOL _AorW_SHGetSpecialFolderPath(HWND hwndOwner, LPTSTR pszPath, int nFolder, BOOL fCreate);
  13. #endif // _AWTHUNK_H_