home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Winzipper
/
Winzipper_ISO.iso
/
multimedia
/
scala
/
CATALOGS
/
LFS.MSG
< prev
next >
Wrap
Text File
|
1996-04-18
|
9KB
|
191 lines
; cdc 1.6 (12 Apr 1996)
; CAT Catalog Emitter $Revision: 1.20 $
;
; Catalog definitions for module "LFS" (LFS.Book)
;
; Original Command Line:
;
; Z:\SCALA\BIN\CDC.EXE -q -t -c -n
; C:\TMP\catch.dir\out\lfs;Z:\scala\names -i
; C:\TMP\catch.dir\include;Z:\scala\include lfs.cdl -o lfs.cdl.err -e
; CPublicHead -v -s -o C:\TMP\catch.dir\obj\lfs\DERIVED\lfs.h -e
; CPrivateHead -v -s -o
; C:\TMP\catch.dir\obj\lfs\DERIVED\INTERNAL\lfs.ph -e CPublicDoc -o
; C:\TMP\catch.dir\obj\lfs\DERIVED\lfs.doc -e CPrivateDoc -o
; C:\TMP\catch.dir\obj\lfs\DERIVED\INTERNAL\lfs.doc -e CPublicIPF -o
; C:\TMP\catch.dir\obj\lfs\DERIVED\lfs.ipf -e CPrivateIPF -o
; C:\TMP\catch.dir\obj\lfs\DERIVED\INTERNAL\lfs.ipf -e Catalog -c -o
; C:\scala\Scala\Catalogs\lfs.msg -e NameDB -o
; C:\TMP\catch.dir\out\lfs\lfs.ndb
;
; THIS FILE IS COMPUTER GENERATED, NO HUMAN GENERATED CHANGES ARE PERMITTED
;
VERSION 1
REVISION 9
LANGUAGE "English"
NATURALNAME "LFS"
; LFS_Required_Key_Missing
; A method was called without a required key. For example, if you call
; the Do_LFS_Write method without supplying an LFS_Buffer key, you will
; get this error.
MSG 0x00a00800 "Required key missing."
; LFS_Object_In_Use
; The object (a file or directory) you were trying to access is in use
; by another process (or you have it opened yourself for a conflicting
; mode). For example, if you try to open a file for read when it is
; already opened for write, you will get this error.
MSG 0x00a00c00 "The file or directory is in use."
; LFS_File_Not_Found
; The file you were trying to access was not found in the path you
; specified.
MSG 0x00a01001 "The file \"%1\" was not found."
; LFS_Directory_Not_Found
; The directory you were trying to access was not found in the path you
; specified.
MSG 0x00a01401 "The directory \"%1\" was not found."
; LFS_Beyond_Root
; You tried to access a file or directory beyond the root of the
; directory tree. For example, the path ":RAM\..\.." is invalid because
; there is no parent of ":" (it is the root of the directory tree).
MSG 0x00a01801 "This path is above the root of the directory tree: \"%1\"."
; LFS_Beyond_Root_Link
; You cannot access the parent of a link (an assignment). The reason
; for this is because an assignment can be a multi-assignment and that
; means you could have more than one parent. LFS will not generate a
; new assignment based on all parents of an assignment.
MSG 0x00a08001 "Tried to access the parent of the link to \"%1\"."
; LFS_Invalid_Path
; The path string you supplied is invalid or has invalid characters.
MSG 0x00a01c01 "The path \"%1\" is invalid."
; LFS_Invalid_Name
; The name you supplied is invalid. It's either too long or has invalid
; characters.
MSG 0x00a02001 "The name \"%1\" is invalid."
; LFS_Invalid_Pattern
; The Pattern you specified was invalid. It's either too long or has
; invalid characters or invalid character combinations.
MSG 0x00a02401 "\"%1\" is not a valid file name."
; LFS_Already_Exists
; You tried to rename a file to a file name that already exists or you
; tried to move a file to a directory where the file name is already
; used.
MSG 0x00a02801 "\"%1\" already exists."
; LFS_Not_A_File
; The object you specified is a directory, not a file. You used
; CLASS_FILEHANDLE when you should have used CLASS_DIRECTORYHANDLE or a
; directory was found with that name that you were not expecting.
MSG 0x00a02c01 "\"%1\" is a directory, not a file."
; LFS_Not_A_Directory
; The object you specified is a file, not a directory. You used
; CLASS_DIRECTORYHANDLE when you should have used CLASS_FILEHANDLE or a
; file was found with that name that you were not expecting.
MSG 0x00a03001 "\"%1\" is a file, not a directory."
; LFS_Not_A_Device
; The object you specified is not a device name (like ":RAM" etc...).
; You may have specified a file, directory, or directory link by
; accident.
MSG 0x00a03401 "\"%1\" is not a device."
; LFS_Cannot_Change
; You cannot change the attribute you requested. You may only GET this
; attribute. You cannot SET it.
MSG 0x00a03801 "Cannot change %1."
; LFS_Invalid_Attribute
; The protection bit(s) (file attribute(s)) you specified is an invalid
; bit(s).
MSG 0x00a04400 "Invalid attribute."
; LFS_Cannot_Move_Across_Devices
; You cannot move a file from one device to another. You may only move
; a file to a destination on the same device. A manual copy of the file
; must be done to move to another device.
MSG 0x00a04c00 "Cannot move across devices."
; LFS_Write_Protected
; You attempted to write to a file or device that is write- protected.
MSG 0x00a05000 "Disk is write-protected."
; LFS_Access_Denied
; The protection bits (file attributes) of this file prohibits the
; access you requested. For example, you tried to write to a read-only
; file.
MSG 0x00a05401 "Access to the file \"%1\" is denied."
; LFS_Read_Only_Device
; The device you tried to access is a read-only device.
MSG 0x00a04000 "Device is read-only."
; LFS_Invalid_Access
; The access you requested is not understood. This value is invalid.
MSG 0x00a05800 "An invalid access value was requested."
; LFS_Read_Access_Not_Requested
; You tried to read information from a file using a handle that was not
; created to have read access.
MSG 0x00a05c01 "Read access was not requested for file \"%1\"."
; LFS_Write_Access_Not_Requested
; You tried to write information to a file using a handle that was not
; created to have write access.
MSG 0x00a06001 "Write access was not requested for file \"%1\"."
; LFS_Directory_Not_Empty
; You tried to delete a directory that is not empty.
MSG 0x00a06401 "Cannot delete the directory \"%1\" because it is not empty."
; LFS_Cannot_Delete_All
; Do_LFS_Format was called and LFS could not delete all objects on that
; device most likely because there are outstanding locks on
; file/directories.
MSG 0x00a06800 "Cannot delete all."
; LFS_Object_Removed
; A method was called on a handle which Do_LFS_Delete was called. The
; only valid operation on a handle after a Do_LFS_Delete is called on
; that handle is Delete().
MSG 0x00a06c00 "Object removed."
; LFS_Invalid_Data_Pointer
; The data pointer you supplied in LFS_Buffer() is NULL or otherwise
; invalid.
MSG 0x00a07000 "Invalid data pointer."
; LFS_Invalid_Seek_Position
; The seek position you specified is invalid. You tried to seek before
; the beginning of file or while in read mode you tried to seek past
; the end of the file.
MSG 0x00a07400 "Invalid seek position."
; LFS_Invalid_Seek_Type
; The value you specified for the seek mode is invalid. Valid modes are
; SEEK_START, SEEK_CURRENT, and SEEK_END.
MSG 0x00a07800 "Invalid seek mode."
; LFS_Device_Full
; The device you were trying to write to is full (out of free space).
MSG 0x00a07c00 "The disk is full."
; LFS_Disk_Not_Present
; The disk for this device is not present.
MSG 0x00a08400 "The disk is not present."
; LFS_Not_Supported
; The operation you tried to perform implies a feature that is not
; supported.
MSG 0x00a08800 "Not supported."
; LFS_Data_Corrupt
; The data in this file (or on the disk in general) is corrupt (e.g.
; has a CRC error or something).
MSG 0x00a0a400 "File or directory contains corrupt data."
; LFS_Aborted
; The request for this handle was aborted. Do_Abort was called on this
; handle.
MSG 0x00a08c00 "Aborted"
; LFS_Invalid_Reply_Object
; The reply object you supplied is not a valid LFS reply object.
MSG 0x00a09000 "Invalid reply object."
; LFS_Name
; Cannot change "name" text
MSG 0x00a09400 "name"
; LFS_Attribute
; Cannot change "attribute" text
MSG 0x00a09800 "attribute"
; LFS_TimeStamp
; Cannot change "timestamp" text
MSG 0x00a09c00 "timestamp"
; LFS_BuffSize
; Cannot change "buffer size" text
MSG 0x00a0a000 "buffer size"
; LFS_Directory_Not_Found_Path
; The directory within a path was not found
MSG 0x00a00402 "The directory \"%1\" was not found in the path \"%2\"."
; LFS_Not_A_Directory_Path
; The directory specified within a path is a file, not a directory
MSG 0x00a03c02 "The object \"%1\" in the path \"%2\" is a file, not a directory."
; LFS_Unknown_Error
; The driver's hardware reported an error that was unexpected
MSG 0x00a04801 "File system error: %1"