typedef struct _VCCALLBACK {
DWORD dwCallback;
DWORD dwFlags;
HDRVR hDevice;
DWORD dwUser;
} VCCALLBACK, *PVCCALLBACK;
The VCCALLBACK structure contains callback information needed by the VC_StreamInit function. The structure is defined in vcuser.h.
|
Flag |
Definition |
|
CALLBACK_WINDOW |
Indicates dwCallback contains a window handle. |
|
CALLBACK_FUNCTION |
Indicates dwCallback contains a callback function address. |
The driver should copy the value of the VIDEO_STREAM_INIT_PARMS
structure’s dwFlags member into this member.
As indicated by the preceding member descriptions above, the VCCALLBACK structure is used to pass VIDEO_STREAM_INIT_PARMS structure members to VC_StreamInit.