SetFileShortName function kernel32

int SetFileShortName(
  1. int hFile,
  2. Pointer<Utf16> lpShortName
)

Sets the short name for the specified file. The file must be on an NTFS file system volume.

BOOL SetFileShortNameW(
  HANDLE  hFile,
  LPCWSTR lpShortName);

Implementation

int SetFileShortName(int hFile, Pointer<Utf16> lpShortName) =>
    _SetFileShortName(hFile, lpShortName);