mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[AUDIOSRV]
* Remove one time inclusions from the main header and put them back where they belong. * Improve the main header. CORE-7716 svn path=/trunk/; revision=61603
This commit is contained in:
parent
d6ad93027a
commit
d12bc6a95a
4 changed files with 12 additions and 9 deletions
|
@ -7,16 +7,10 @@
|
|||
*/
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winreg.h>
|
||||
#include <winuser.h>
|
||||
#include <mmsystem.h>
|
||||
#include <assert.h>
|
||||
#include <setupapi.h>
|
||||
#include <ksmedia.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <malloc.h>
|
||||
#include <dbt.h>
|
||||
#include <audiosrv/audiosrv.h>
|
||||
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
#include "audiosrv.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void logmsg(char* string, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
|
|
@ -8,8 +8,13 @@
|
|||
|
||||
#include "audiosrv.h"
|
||||
|
||||
static HDEVNOTIFY device_notification_handle = NULL;
|
||||
#include <winreg.h>
|
||||
#include <winuser.h>
|
||||
#include <mmsystem.h>
|
||||
#include <setupapi.h>
|
||||
#include <ksmedia.h>
|
||||
|
||||
static HDEVNOTIFY device_notification_handle = NULL;
|
||||
|
||||
/*
|
||||
Finds all devices within the KSCATEGORY_AUDIO category and puts them
|
||||
|
|
|
@ -8,6 +8,8 @@
|
|||
|
||||
#include "audiosrv.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
static HANDLE audio_device_list_lock = NULL;
|
||||
|
||||
BOOL
|
||||
|
|
Loading…
Reference in a new issue