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) 1999 Microsoft Corporation. All Rights Reserved. * * File: fdtglob.cpp * Content: Declares global variables used for IPC mechanisms. * History: * Date By Reason * ============ * 08/25/99 pnewson created ***************************************************************************/
#include "dxvtlibpch.h"
// the critical section to guard these globals
DNCRITICAL_SECTION g_csGuard;
// the DirectSound objects
LPDIRECTSOUND g_lpdsPriorityRender = NULL; LPDIRECTSOUND g_lpdsFullDuplexRender = NULL; LPDIRECTSOUNDCAPTURE g_lpdscFullDuplexCapture = NULL; LPDIRECTSOUNDBUFFER g_lpdsbPriorityPrimary = NULL; LPDIRECTSOUNDBUFFER g_lpdsbPrioritySecondary = NULL; LPDIRECTSOUNDBUFFER g_lpdsbFullDuplexSecondary = NULL; LPDIRECTSOUNDNOTIFY g_lpdsnFullDuplexSecondary = NULL; HANDLE g_hFullDuplexRenderEvent = NULL; LPDIRECTSOUNDCAPTUREBUFFER g_lpdscbFullDuplexCapture = NULL; LPDIRECTSOUNDNOTIFY g_lpdsnFullDuplexCapture = NULL; HANDLE g_hFullDuplexCaptureEvent = NULL;
|