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.

28 lines
493 B

  1. #pragma once
  2. #if defined(__cplusplus)
  3. extern "C"
  4. {
  5. #endif
  6. BOOL
  7. WINAPI
  8. FusionpGetVolumePathNamesForVolumeNameA(
  9. LPCSTR lpszVolumeName,
  10. LPSTR lpszVolumePathNames,
  11. DWORD cchBufferLength,
  12. PDWORD lpcchReturnLength
  13. );
  14. BOOL
  15. WINAPI
  16. FusionpGetVolumePathNamesForVolumeNameW(
  17. LPCWSTR lpszVolumeName,
  18. LPWSTR lpszVolumePathNames,
  19. DWORD cchBufferLength,
  20. PDWORD lpcchReturnLength
  21. );
  22. #if defined(__cplusplus)
  23. } /* extern "C" */
  24. #endif