Windows missing conversion
Brought to you by:
chrsmithdemos
Originally created by: daniel.p...@gmail.com
In mmap_windows.go line 26:
h, err := syscall.CreateFileMapping(f.Fd(), nil, ...
Need convert to syscall.Handle:
h, err := syscall.CreateFileMapping(syscall.Handle(f.Fd()), nil,
View and moderate all "tickets Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Tickets"
Originally posted by: zhuang...@gmail.com
thanks for sharing this