GetShortPathNameA method

int GetShortPathNameA(
  1. Pointer<Int8> lpszLongPath,
  2. Pointer<Int8> lpszShortPath,
  3. int cchBuffer
)

Implementation

int GetShortPathNameA(
  ffi.Pointer<ffi.Int8> lpszLongPath,
  ffi.Pointer<ffi.Int8> lpszShortPath,
  int cchBuffer,
) {
  return _GetShortPathNameA(
    lpszLongPath,
    lpszShortPath,
    cchBuffer,
  );
}