GetVolumePathNameW method

int GetVolumePathNameW(
  1. Pointer<Uint16> lpszFileName,
  2. Pointer<Uint16> lpszVolumePathName,
  3. int cchBufferLength
)

Implementation

int GetVolumePathNameW(
  ffi.Pointer<ffi.Uint16> lpszFileName,
  ffi.Pointer<ffi.Uint16> lpszVolumePathName,
  int cchBufferLength,
) {
  return _GetVolumePathNameW(
    lpszFileName,
    lpszVolumePathName,
    cchBufferLength,
  );
}