Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 232 of file notify.c.
Referenced by IDirectSoundCaptureBufferImpl_QueryInterface().
{ LPCDirectSoundNotifyImpl This = HeapAlloc(GetProcessHeap(), 0, sizeof(CDirectSoundNotifyImpl)); if (!This) return DSERR_OUTOFMEMORY; This->lpVtbl = &vt_DirectSoundNotify; This->bLoop = bLoop; This->bMix = bMix; This->hPin = hPin; This->ref = 1; This->EventListHead = NULL; This->BufferSize = BufferSize; *Notify = (LPDIRECTSOUNDNOTIFY)&This->lpVtbl; return DS_OK; }