Important: The information in this document is obsolete and should not be used for new development.
Alias Records
Alias records are defined by theAliasRecord
data type.
TYPE AliasRecord = RECORD userType: OSType; {application's signature} aliasSize: Integer; {size of record when created} {variable-length private data} END;Following these two fields is a variable-length block of data maintained privately by the Alias Manager.
Field Description
userType
- A 4-byte field that can contain application-specific data. When an alias record is created, this field contains 0. Your application can use this field for its own purposes. Typically you should store your application's signature here.
aliasSize
- The size, in bytes, assigned to the alias record at the time of its creation or updating. This is the total size of the record, including the
userType
andaliasSize
fields, as well as the variable-length data that is private to the Alias Manager.
© Apple Computer, Inc.
2 JUL 1996