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 ..." |
mNo edit summary |
||
Line 1: | Line 1: | ||
Defines valid source and destination format pairs. | Defines valid source and destination format pairs. | ||
<PRE> | <PRE> | ||
typedef struct _VALID_DATA_FORMATS { | typedef struct _VALID_DATA_FORMATS { |
Latest revision as of 18:40, 5 April 2025
Defines valid source and destination format pairs.
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;