xref: /reactos/dll/directx/dsound_new/stubs.c (revision 1734f297)
1 /*
2  * COPYRIGHT:       See COPYING in the top level directory
3  * PROJECT:         ReactOS Configuration of network devices
4  * FILE:            dll/directx/dsound_new/stubs.c
5  * PURPOSE:         DSound stubs
6  *
7  * PROGRAMMERS:     Johannes Anderwald (johannes.anderwald@reactos.org)
8  */
9 
10 #include "precomp.h"
11 
12 HRESULT
13 WINAPI
14 DirectSoundFullDuplexCreate(
15     LPCGUID pcGuidCaptureDevice,
16     LPCGUID pcGuidRenderDevice,
17     LPCDSCBUFFERDESC pcDSCBufferDesc,
18     LPCDSBUFFERDESC pcDSBufferDesc,
19     HWND hWnd,
20     DWORD dwLevel,
21     LPDIRECTSOUNDFULLDUPLEX *ppDSFD,
22     LPDIRECTSOUNDCAPTUREBUFFER8 *ppDSCBuffer8,
23     LPDIRECTSOUNDBUFFER8 *ppDSBuffer8,
24     LPUNKNOWN pUnkOuter)
25 {
26     UNIMPLEMENTED;
27     return DSERR_INVALIDPARAM;
28 }
29 
30