Microsoft DirectX 9.0

CAMEvent::CAMEvent

Constructor method.

Syntax

CAMEvent(
    BOOL fManualReset = FALSE
);

Parameters

fManualReset

Boolean value that specifies whether the object is a manual-reset event or an auto-reset event. If TRUE, the object is a manual-reset event. Otherwise, it is an auto-reset event.

Remarks

The event begins in a nonsignaled state.

With an auto-reset event, the CAMEvent::Wait method resets the event to nonsignaled when the method returns. With a manual-reset event, the event remains signaled until you call the CAMEvent::Reset method.

See Also