Difference between revisions of "Unit CDFS"
From Ultibo.org
Line 535: | Line 535: | ||
=== Type definitions === | === Type definitions === | ||
+ | ---- | ||
+ | |||
+ | ''To be documented'' | ||
+ | |||
+ | === Class definitions === | ||
---- | ---- | ||
Revision as of 03:07, 17 January 2017
Return to Unit Reference
Contents
[hide]Description
Ultibo CDFS interface unit
To be documented
Constants
[Expand]
CDFS specific constants
cdfs*
[Expand]
CDFS bitmap mask constants
cdfsBitmapMask*
[Expand]
CDFS volume flag constants
cdfsVolumeFlag*
[Expand]
CDFS file flag constants
cdfsFileFlag*
[Expand]
CDFS permissions constants
cdfsPermission*
[Expand]
CDFS path table constants
cdfsPathTable*
[Expand]
CDFS volume descriptor constants
cdfsVolumeDescriptor*
[Expand]
CDFS header constants
cdfsElTorito*
[Expand]
CDFS signature constants
cdfsElToritoSignature*
[Expand]
CDFS platform Id constants
cdfsElToritoPlatform*
[Expand]
CDFS media type constants
cdfsElToritoMedia*
[Expand]
CDFS extension flag constants
cdfsElToritoExtensionFlag*
Type definitions
To be documented
Class definitions
To be documented
Public variables
None defined
Function declarations
Initialization functions
CDFS helper functions
[Expand]
function CDFSDataToPointer(const AData; ASize:Integer; ASwap:Boolean):Pointer;
Description: Creates a pointer and copies data from a buffer
[Expand]
function CDFSPointerToData(APointer:Pointer; var AData; ASize:Integer; ASwap:Boolean):Boolean;
Description: Copies data to a buffer from supplied pointer
[Expand]
function CDFSIdentifierToString(const AIdentifier; ASize:Integer; AUnicode:Boolean):String;
Description: Converts the supplied indentifier to a string
[Expand]
function CDFSStringToIdentifier(const AString:String; var AIdentifier; ASize:Integer; AUnicode:Boolean):Boolean;
Description: Converts the supplied string to an identifier
[Expand]
function CDFSIdentifierToFileName(const AIdentifier; ASize:Integer; AUnicode:Boolean):String;
Description: Converts the supplied identifier to a filename
[Expand]
function CDFSFileNameToIdentifier(const AFileName:String; var AIdentifier; ASize:Integer; AUnicode:Boolean):Boolean;
Description: Converts the supplied filename to an identifier
[Expand]
function CDFSTimeToFileTime(const ATime:TCDFSTime):TFileTime;
Description: Converts a CDFS Time in Local to a File Time in UTC
[Expand]
function FileTimeToCDFSTime(const AFileTime:TFileTime; var ATime:TCDFSTime):Boolean;
Description: Converts a File Time in UTC to a CDFS Time in Local
[Expand]
function CDFSDateTimeToFileTime(const ADateTime:TCDFSDateTime):TFileTime;
Description: Converts a CDFS Date Time in Local to a File Time in UTC
[Expand]
function FileTimeToCDFSDateTime(const AFileTime:TFileTime; var ADateTime:TCDFSDateTime):Boolean;
Description: Converts a File Time in UTC to a CDFS Date Time in Local
Return to Unit Reference