Jump to content

VALID DATA FORMATS: Difference between revisions

From EDM2
Created page with "Defines valid source and destination format pairs. ==Example Code== <PRE> typedef struct _VALID_DATA_FORMATS { ULONG ulSrcDstFormat; /* Combined source and ..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Defines valid source and destination format pairs.  
Defines valid source and destination format pairs.


==Example Code==
<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;