GetFullPathNameW method

int GetFullPathNameW(
  1. Pointer<Uint16> lpFileName,
  2. int nBufferLength,
  3. Pointer<Uint16> lpBuffer,
  4. Pointer<Pointer<Uint16>> lpFilePart,
)

Implementation

int GetFullPathNameW(
  ffi.Pointer<ffi.Uint16> lpFileName,
  int nBufferLength,
  ffi.Pointer<ffi.Uint16> lpBuffer,
  ffi.Pointer<ffi.Pointer<ffi.Uint16>> lpFilePart,
) {
  return _GetFullPathNameW(
    lpFileName,
    nBufferLength,
    lpBuffer,
    lpFilePart,
  );
}