windows loading fixes

db4
Joe Groff 2009-09-19 02:31:06 -05:00
parent 5e15da2b42
commit 014163e27b
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
USING: alien.syntax kernel math windows.types windows.kernel32
math.bitwise ;
math.bitwise classes.struct ;
IN: windows.advapi32
LIBRARY: advapi32

View File

@ -690,8 +690,8 @@ STRUCT: OFSTRUCT
{ nErrCode WORD }
{ Reserved1 WORD }
{ Reserved2 WORD }
! { szPathName { CHAR OFS_MAXPATHNAME } } ;
{ szPathName { CHAR 128 } } ;
! { szPathName { CHAR OFS_MAXPATHNAME } } ;
TYPEDEF: OFSTRUCT* LPOFSTRUCT

View File

@ -1,6 +1,6 @@
! Copyright (C) 2009 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: alien.syntax alien.destructors ;
USING: alien.syntax alien.destructors classes.struct ;
IN: windows.usp10
LIBRARY: usp10