]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/io/files/trash/macosx/macosx.factor
use radix literals
[factor.git] / extra / io / files / trash / macosx / macosx.factor
index 42a1509993a9f59c3214ee123c3b757c18db84ee..61bd4812f96fd8e58d6156f0c6bbed051df9649e 100644 (file)
@@ -17,14 +17,14 @@ TYPEDEF: UInt32 OptionBits
 
 CONSTANT: noErr 0
 
-CONSTANT: kFSFileOperationDefaultOptions HEX: 00
-CONSTANT: kFSFileOperationOverwrite HEX: 01
-CONSTANT: kFSFileOperationSkipSourcePermissionErrors HEX: 02
-CONSTANT: kFSFileOperationDoNotMoveAcrossVolumes HEX: 04
-CONSTANT: kFSFileOperationSkipPreflight HEX: 08
-
-CONSTANT: kFSPathMakeRefDefaultOptions HEX: 00
-CONSTANT: kFSPathMakeRefDoNotFollowLeafSymlink HEX: 01
+CONSTANT: kFSFileOperationDefaultOptions 0x00
+CONSTANT: kFSFileOperationOverwrite 0x01
+CONSTANT: kFSFileOperationSkipSourcePermissionErrors 0x02
+CONSTANT: kFSFileOperationDoNotMoveAcrossVolumes 0x04
+CONSTANT: kFSFileOperationSkipPreflight 0x08
+
+CONSTANT: kFSPathMakeRefDefaultOptions 0x00
+CONSTANT: kFSPathMakeRefDoNotFollowLeafSymlink 0x01
 
 FUNCTION: OSStatus FSMoveObjectToTrashSync (
     FSRef* source,