VALID DATA FORMATS: Difference between revisions
Appearance
Created page with "Defines valid source and destination format pairs. ==Example Code== <PRE> typedef struct _VALID_DATA_FORMATS { ULONG ulSrcDstFormat; /* Combined source and ..." |
(No difference)
|
Revision as of 17:02, 8 February 2020
Defines valid source and destination format pairs.
Example Code
typedef struct _VALID_DATA_FORMATS {
ULONG ulSrcDstFormat; /* Combined source and destination codes. */
PFN pfnRowConversionRoutine; /* Address of the conversion routine for this pair. */
PBYTE *ppConvertTable; /* Address to the conversion table, if required. */
PFN pfnCreateConvertTable; /* Address to a routine that creates a conversion table. */
} VALID_DATA_FORMATS;
typedef VALID_DATA_FORMATS *PVALID_DATA_FORMATS;