Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 1996 Microsoft Corporation
Module Name:
wdm.c
Abstract:
This is the WDM DX mapper driver.
Author:
billpa
Environment:
Kernel mode only
Revision History:
--*/
#include "wdm.h"
#include "dxapi.h"
#include "dxmapper.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text(PAGE, DriverEntry)
#endif
BOOLEAN DsoundOk = FALSE;
NTSTATUS DriverEntry( IN PDRIVER_OBJECT DriverObject, IN PUNICODE_STRING RegistryPath ) /*++
Routine Description:
Entry point for explicitely loaded stream class.
Arguments:
DriverObject - Pointer to the driver object created by the system. RegistryPath - unused.
Return Value:
STATUS_SUCCESS
--*/ {
UNREFERENCED_PARAMETER(DriverObject); return STATUS_SUCCESS; }
ULONG DxApiGetVersion( ) /*++
Routine Description:
Arguments:
Return Value:
--*/ {
return (DXCheckDDrawVersion()); }
ULONG DxApi( IN ULONG dwFunctionNum, IN PVOID lpvInBuffer, IN ULONG cbInBuffer, IN PVOID lpvOutBuffer, IN ULONG cbOutBuffer ) /*++
Routine Description:
Arguments:
Return Value:
--*/ {
//
// if we haven't checked if DSOUND is present and the right version,
// (or if we've checked before and failed) check and return error if not
// loaded or correct version.
//
if (!DsoundOk) {
if (DXCheckDDrawVersion() < DXVERSION) {
return 0;
} else {
DsoundOk = TRUE; } }
return DXIssueIoctl( dwFunctionNum, lpvInBuffer, cbInBuffer, lpvOutBuffer, cbOutBuffer ); }
|