blob: bf9d2d1e8e9f0853042c6463aef4977671ad4ba6 (
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 ---
}
|