Win32Constants.st
branchjv
changeset 17734 406b1590afe8
child 17735 6a5bc05f696a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Win32Constants.st	Thu Nov 05 14:41:30 2009 +0000
@@ -0,0 +1,38 @@
+"{ Package: 'stx:libbasic' }"
+
+SharedPool subclass:#Win32Constants
+	instanceVariableNames:''
+	classVariableNames:'FILE_ATTRIBUTE_HIDDEN FILE_ATTRIBUTE_NORMAL
+		FILE_ATTRIBUTE_TEMPORARY FILE_ATTRIBUTE_DIRECTORY
+		FILE_ATTRIBUTE_READONLY'
+	poolDictionaries:''
+	category:'OS-Windows'
+!
+
+!Win32Constants class methodsFor:'documentation'!
+
+documentation
+"
+    contains (will, eventually) win32 OS constants.
+"
+! !
+
+!Win32Constants class methodsFor:'initialization'!
+
+initialize
+    "Invoked at system start or when the class is dynamically loaded."
+
+    FILE_ATTRIBUTE_READONLY := 1.
+    FILE_ATTRIBUTE_HIDDEN := 2.
+    FILE_ATTRIBUTE_DIRECTORY := 16.
+    FILE_ATTRIBUTE_NORMAL := 128.
+    FILE_ATTRIBUTE_TEMPORARY := 256.
+! !
+
+!Win32Constants class methodsFor:'documentation'!
+
+version_CVS
+    ^ '$Id: Win32Constants.st 10477 2009-11-05 14:41:30Z vranyj1 $'
+! !
+
+Win32Constants initialize!