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.

35 lines
396 B

  1. /*
  2. ** lzapi.h - Private interface to LZEXPand.LIB.
  3. */
  4. #ifndef _LZPRIVAPI_
  5. #define _LZPRIVAPI_
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. /*
  10. ** Prototypes
  11. */
  12. // For the time being, private APIS exported
  13. INT
  14. LZCreateFileW(
  15. LPWSTR,
  16. DWORD,
  17. DWORD,
  18. DWORD,
  19. LPWSTR);
  20. VOID
  21. LZCloseFile(
  22. INT);
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. #endif // _LZEXPAND_