From: Joe Groff Date: Sat, 19 Sep 2009 07:31:06 +0000 (-0500) Subject: windows loading fixes X-Git-Tag: 0.97~5502^2~3^2~3 X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=commitdiff_plain;h=014163e27b85410396859e04a984167873ea842e windows loading fixes --- diff --git a/basis/windows/advapi32/advapi32.factor b/basis/windows/advapi32/advapi32.factor index 1bc7f30caf..21f048a00f 100755 --- a/basis/windows/advapi32/advapi32.factor +++ b/basis/windows/advapi32/advapi32.factor @@ -1,5 +1,5 @@ USING: alien.syntax kernel math windows.types windows.kernel32 -math.bitwise ; +math.bitwise classes.struct ; IN: windows.advapi32 LIBRARY: advapi32 diff --git a/basis/windows/kernel32/kernel32.factor b/basis/windows/kernel32/kernel32.factor index ef8952be73..075b0218b3 100755 --- a/basis/windows/kernel32/kernel32.factor +++ b/basis/windows/kernel32/kernel32.factor @@ -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 diff --git a/basis/windows/usp10/usp10.factor b/basis/windows/usp10/usp10.factor index cf8e69ba24..eb57a46925 100755 --- a/basis/windows/usp10/usp10.factor +++ b/basis/windows/usp10/usp10.factor @@ -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