// msviddrv.h
typedef struct tag_video_geterrortext_parms {
DWORD dwError;
#if ...
LPWSTR lpText;
#else
LPSTR lpText;
#endif
DWORD dwLength;
} VIDEO_GETERRORTEXT_PARMS, *LPVIDEO_GETERRORTEXT_PARMS;
View the official Windows Driver Kit DDI referenceNo description available.
dwErrorSpecifies the error number to identify.
lpTextSpecifies the text buffer to fill.
Specifies the text buffer to fill.
dwLengthSpecifies the size of the text buffer in characters.