Skip to content

Commit

Permalink
Merge pull request #36 from darrenstahlmsft/Updatezsyscall
Browse files Browse the repository at this point in the history
Regenerate zsyscall with latest mksyscall_windows
  • Loading branch information
darstahl authored Nov 21, 2016
2 parents d8f60f2 + ff6c542 commit 24a3e3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zsyscall_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
var _ unsafe.Pointer

var (
modkernel32 = syscall.NewLazyDLL("kernel32.dll")
modwinmm = syscall.NewLazyDLL("winmm.dll")
modadvapi32 = syscall.NewLazyDLL("advapi32.dll")
modkernel32 = windows.NewLazySystemDLL("kernel32.dll")
modwinmm = windows.NewLazySystemDLL("winmm.dll")
modadvapi32 = windows.NewLazySystemDLL("advapi32.dll")

procCancelIoEx = modkernel32.NewProc("CancelIoEx")
procCreateIoCompletionPort = modkernel32.NewProc("CreateIoCompletionPort")
Expand Down

0 comments on commit 24a3e3d

Please sign in to comment.