GetWindowsDirectory |
Declare Function Api_GetWindowsDirectory& Lib "kernel32" Alias "GetWindowsDirectoryA" (ByVal lpBuffer$, ByVal nSize&) |
Declare Function GetWindowsDirectory Lib "kernel32" Alias "GetWindowsDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long |
|
パラメータ 関数から制御が返ると、このバッファに、Windows ディレクトリのパス名を表す、NULL で終わる文字列が格納される。 Windows ディレクトリがドライブのルートディレクトリでない限り、円記号(\)で終わることはない。 たとえば、Windows ディレクトリがドライブ C の WINDOWS と命名されている場合、この関数が取得する Windows ディレクトリのパスは、
C:\WINDOWS である。システムがドライブ C のルートディレクトリにインストールされている場合、この関数が取得するパスは C:\ である。
パスを格納するための十分なサイズを確保するために MAX_PATH を指定する。
戻り値 |