// d3dkmthk.h
PFND3DKMT_SETSTEREOENABLED Pfnd3dkmtSetstereoenabled;
NTSTATUS Pfnd3dkmtSetstereoenabled(
BOOL unnamedParam1
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The PFND3DKMT_SETSTEREOENABLED callback function retrieves a Boolean value that indicates whether the operating system's stereoscopic 3-D display behavior is enabled.
unnamedParam1:_In_ bStereoEnabled
TRUE if the operating system's stereoscopic 3-D display behavior is enabled; FALSE otherwise.
Returns STATUS_SUCCESS if the function completed successfully.
This function might also return other NTSTATUS values.
//Declaration
PFND3DKMT_SETSTEREOENABLED D3DKMTSetStereoEnabled;
// Definition
_Check_return_ NTSTATUS APIENTRY D3DKMTSetStereoEnabled(
_In_ BOOL bStereoEnabled
);