add ffi/winapi; use it in mzlib/os
Closes PR 12007 original commit: 59731368fc7d90c1177c60ade3ec1f8c4fb0a4ae
This commit is contained in:
parent
51afe5c7ad
commit
6680a2b30f
|
@ -1,6 +1,9 @@
|
|||
#lang mzscheme
|
||||
|
||||
(require mzlib/etc mzlib/foreign) (unsafe!)
|
||||
(require mzlib/etc
|
||||
ffi/unsafe
|
||||
ffi/cvector
|
||||
ffi/winapi)
|
||||
|
||||
(define kernel32
|
||||
(delay (and (eq? 'windows (system-type)) (ffi-lib "kernel32"))))
|
||||
|
@ -23,7 +26,7 @@
|
|||
|
||||
(define windows-getcomputername
|
||||
(delay-ffi-obj "GetComputerNameExA" (force kernel32)
|
||||
(_fun #:abi 'stdcall _int _bytes _cvector -> _int)))
|
||||
(_fun #:abi winapi _int _bytes _cvector -> _int)))
|
||||
|
||||
(define (gethostname)
|
||||
(case (system-type)
|
||||
|
|
Loading…
Reference in New Issue
Block a user