GetLogicalDriveStrings function kernel32
Fills a buffer with strings that specify valid drives in the system.
DWORD GetLogicalDriveStringsW(
DWORD nBufferLength,
LPWSTR lpBuffer
);
Implementation
int GetLogicalDriveStrings(int nBufferLength, Pointer<Utf16> lpBuffer) =>
_GetLogicalDriveStrings(nBufferLength, lpBuffer);