| author | |
| committer | |
| log | 0bc4ee17926356a75539086bcef84173b5229a9b |
| tree | 47b5acae2fdd1e646e76fa789cc734014c38c7a4 |
| parent | f2768e5564123a3ca52491163885cd6a2d8a142b |
3 files changed, 0 insertions(+), 29 deletions(-)
lib/std/os/windows.zig-2| ... | @@ -21,8 +21,6 @@ test { | ... | @@ -21,8 +21,6 @@ test { |
| 21 | pub const advapi32 = @import("windows/advapi32.zig"); | 21 | pub const advapi32 = @import("windows/advapi32.zig"); |
| 22 | pub const kernel32 = @import("windows/kernel32.zig"); | 22 | pub const kernel32 = @import("windows/kernel32.zig"); |
| 23 | pub const ntdll = @import("windows/ntdll.zig"); | 23 | pub const ntdll = @import("windows/ntdll.zig"); |
| 24 | pub const ole32 = @import("windows/ole32.zig"); | ||
| 25 | pub const shell32 = @import("windows/shell32.zig"); | ||
| 26 | pub const ws2_32 = @import("windows/ws2_32.zig"); | 24 | pub const ws2_32 = @import("windows/ws2_32.zig"); |
| 27 | pub const crypt32 = @import("windows/crypt32.zig"); | 25 | pub const crypt32 = @import("windows/crypt32.zig"); |
| 28 | pub const nls = @import("windows/nls.zig"); | 26 | pub const nls = @import("windows/nls.zig"); |
lib/std/os/windows/ole32.zig deleted-12| ... | @@ -1,12 +0,0 @@ | ||
| 1 | const std = @import("../../std.zig"); | ||
| 2 | const windows = std.os.windows; | ||
| 3 | const WINAPI = windows.WINAPI; | ||
| 4 | const LPVOID = windows.LPVOID; | ||
| 5 | const DWORD = windows.DWORD; | ||
| 6 | const HRESULT = windows.HRESULT; | ||
| 7 | |||
| 8 | pub extern "ole32" fn CoTaskMemFree(pv: LPVOID) callconv(WINAPI) void; | ||
| 9 | pub extern "ole32" fn CoUninitialize() callconv(WINAPI) void; | ||
| 10 | pub extern "ole32" fn CoGetCurrentProcess() callconv(WINAPI) DWORD; | ||
| 11 | pub extern "ole32" fn CoInitialize(pvReserved: ?LPVOID) callconv(WINAPI) HRESULT; | ||
| 12 | pub extern "ole32" fn CoInitializeEx(pvReserved: ?LPVOID, dwCoInit: DWORD) callconv(WINAPI) HRESULT; | ||
lib/std/os/windows/shell32.zig deleted-15| ... | @@ -1,15 +0,0 @@ | ||
| 1 | const std = @import("../../std.zig"); | ||
| 2 | const windows = std.os.windows; | ||
| 3 | const WINAPI = windows.WINAPI; | ||
| 4 | const KNOWNFOLDERID = windows.KNOWNFOLDERID; | ||
| 5 | const DWORD = windows.DWORD; | ||
| 6 | const HANDLE = windows.HANDLE; | ||
| 7 | const WCHAR = windows.WCHAR; | ||
| 8 | const HRESULT = windows.HRESULT; | ||
| 9 | |||
| 10 | pub extern "shell32" fn SHGetKnownFolderPath( | ||
| 11 | rfid: *const KNOWNFOLDERID, | ||
| 12 | dwFlags: DWORD, | ||
| 13 | hToken: ?HANDLE, | ||
| 14 | ppszPath: *[*:0]WCHAR, | ||
| 15 | ) callconv(WINAPI) HRESULT; | ||