mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-16 02:42:22 -07:00
11 lines
297 B
Odin
11 lines
297 B
Odin
package sys_windows
|
|
|
|
foreign import userenv "system:Userenv.lib"
|
|
|
|
@(default_calling_convention="stdcall")
|
|
foreign userenv {
|
|
GetUserProfileDirectoryW :: proc(hToken: HANDLE,
|
|
lpProfileDir: LPWSTR,
|
|
lpcchSize: ^DWORD) -> BOOL ---
|
|
}
|