typedef struct {
DWORD dwMicroSecPerFrame;
DWORD dwCallback;
DWORD dwCallbackInst;
DWORD dwFlags;
DWORD hVideo;
} VIDEO_STREAM_INIT_PARMS;
The VIDEO_STREAM_INIT_PARMS structure contains information needed to initialize a video capture stream. User-mode video-capture drivers receive this structure along with a DVM_STREAM_INIT message. The structure is defined in msviddrv.h.
|
Flag |
Definition |
|
CALLBACK_WINDOW |
Indicates dwCallback contains a window handle. |
|
CALLBACK_FUNCTION |
Indicates dwCallback contains a callback function address. |
The dwCallback, dwCallbackInst, and dwFlags members contain information needed by the driver to deliver callback messages. For more information, see Notifying Clients from Video Capture Drivers.