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.

26 lines
744 B

  1. #ifndef __UNICNVRT__
  2. #define __UNICNVRT__
  3. #include "wtypes.h"
  4. extern BOOL g_bRunningOnNT; //set in dllmain.cpp
  5. UINT AthGetTempFileNameW(
  6. LPCWSTR lpPathName,
  7. LPCWSTR lpPrefixString,
  8. UINT uUnique,
  9. LPWSTR lpTempFileName);
  10. DWORD AthGetTempPathW(
  11. DWORD nBufferLength,
  12. LPWSTR lpBuffer);
  13. HANDLE AthCreateFileW(
  14. LPCWSTR lpFileName,
  15. DWORD dwDesiredAccess,
  16. DWORD dwShareMode,
  17. LPSECURITY_ATTRIBUTES lpSecurityAttributes,
  18. DWORD dwCreationDisposition,
  19. DWORD dwFlagsAndAttributes,
  20. HANDLE hTemplateFile);
  21. #endif