blob: 095fff304e086d01ec7f7c6e537279e7bb4ef8d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#+build windows
package sys_windows
foreign import shlwapi "system:shlwapi.lib"
@(default_calling_convention="system")
foreign shlwapi {
PathFileExistsW :: proc(pszPath: wstring) -> BOOL ---
PathFindExtensionW :: proc(pszPath: wstring) -> wstring ---
PathFindFileNameW :: proc(pszPath: wstring) -> wstring ---
SHAutoComplete :: proc(hwndEdit: HWND, dwFlags: DWORD) -> LWSTDAPI ---
}
|