SetFileShortName function kernel32
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);