]> gitweb.factorcode.org Git - factor.git/commitdiff
windows loading fixes
authorJoe Groff <arcata@gmail.com>
Sat, 19 Sep 2009 07:31:06 +0000 (02:31 -0500)
committerJoe Groff <arcata@gmail.com>
Sat, 19 Sep 2009 07:31:06 +0000 (02:31 -0500)
basis/windows/advapi32/advapi32.factor
basis/windows/kernel32/kernel32.factor
basis/windows/usp10/usp10.factor

index 1bc7f30caf32785f434ed69b675ed2921d94f706..21f048a00f43bcba99f7dc66c5cdff6f204a3fe9 100755 (executable)
@@ -1,5 +1,5 @@
 USING: alien.syntax kernel math windows.types windows.kernel32
-math.bitwise ;
+math.bitwise classes.struct ;
 IN: windows.advapi32
 
 LIBRARY: advapi32
index ef8952be73565e330a59de4aabd8f3c1d6c45c43..075b0218b3e4cde1c2bf2762edff8a1c193316d0 100755 (executable)
@@ -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
 
index cf8e69ba24de94e4f4794f40caefe5493e716332..eb57a469258ff10558ad03f7b28c9c7c34f96a5b 100755 (executable)
@@ -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