add ffi/winapi; use it in mzlib/os

Closes PR 12007

original commit: 59731368fc7d90c1177c60ade3ec1f8c4fb0a4ae
This commit is contained in:
Matthew Flatt 2011-07-01 10:34:43 -06:00
parent 51afe5c7ad
commit 6680a2b30f

View File

@ -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)