diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-09-30 09:31:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-30 09:31:24 -0400 |
| commit | a42a213e35842e18750dd8cfdfc0d024e23da50b (patch) | |
| tree | e766cb115890713ec2d5522e3f5ba59032dd881a /std/os/windows/index.zig | |
| parent | e6446dfc86e42ccea93760d99cf4b421265cfb0e (diff) | |
| parent | 623f5085f152b3a2fedf3b4e4451910f1edb6739 (diff) | |
| download | zig-a42a213e35842e18750dd8cfdfc0d024e23da50b.tar.gz zig-a42a213e35842e18750dd8cfdfc0d024e23da50b.zip | |
Merge pull request #1594 from emekoi/master
added dynamic library loading for windows
Diffstat (limited to 'std/os/windows/index.zig')
| -rw-r--r-- | std/os/windows/index.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/std/os/windows/index.zig b/std/os/windows/index.zig index fc64db7c37..9d03cf6625 100644 --- a/std/os/windows/index.zig +++ b/std/os/windows/index.zig @@ -24,6 +24,7 @@ pub const HANDLE = *c_void; pub const HCRYPTPROV = ULONG_PTR; pub const HINSTANCE = *@OpaqueType(); pub const HMODULE = *@OpaqueType(); +pub const FARPROC = *@OpaqueType(); pub const INT = c_int; pub const LPBYTE = *BYTE; pub const LPCH = *CHAR; |
