* Add a PCH.

svn path=/trunk/; revision=52983
This commit is contained in:
Amine Khaldi 2011-07-28 16:17:45 +00:00
parent 935598ba6f
commit 7000348187
6 changed files with 14 additions and 28 deletions

View file

@ -11,4 +11,5 @@ list(APPEND SOURCE
control.c) control.c)
add_library(mment4 ${SOURCE}) add_library(mment4 ${SOURCE})
add_pch(mment4 precomp.h)
add_dependencies(mment4 psdk) add_dependencies(mment4 psdk)

View file

@ -9,14 +9,7 @@
*/ */
#define NDEBUG #define NDEBUG
#include "precomp.h"
#include <windows.h>
#include <mmsystem.h>
#include <mmddk.h>
#include <ntddsnd.h>
#include <sndtypes.h>
#include <mmebuddy.h>
#include <mment4.h>
/* /*
Convenience routine for getting the path of a device and opening it. Convenience routine for getting the path of a device and opening it.

View file

@ -11,15 +11,7 @@
* PROGRAMMERS: Andrew Greenwood (silverblade@reactos.org) * PROGRAMMERS: Andrew Greenwood (silverblade@reactos.org)
*/ */
#include <windows.h> #include "precomp.h"
#include <mmsystem.h>
#include <mmddk.h>
#include <ntddsnd.h>
#include <sndnames.h>
#include <sndtypes.h>
#include <mmebuddy.h>
#include <mment4.h>
/* /*
This is the "nice" way to discover audio devices in NT4 - go into the This is the "nice" way to discover audio devices in NT4 - go into the

View file

@ -5,5 +5,6 @@
<define name="DEBUG_NT4">1</define> <define name="DEBUG_NT4">1</define>
<file>detect.c</file> <file>detect.c</file>
<file>registry.c</file> <file>registry.c</file>
<file>control.c</file> <file>control.c</file>
<pch>precomp.h</pch>
</module> </module>

View file

@ -0,0 +1,8 @@
#include <windows.h>
#include <mmsystem.h>
#include <mmddk.h>
#include <ntddsnd.h>
#include <sndnames.h>
#include <sndtypes.h>
#include <mmebuddy.h>
#include <mment4.h>

View file

@ -8,16 +8,7 @@
* PROGRAMMERS: Andrew Greenwood (silverblade@reactos.org) * PROGRAMMERS: Andrew Greenwood (silverblade@reactos.org)
*/ */
#include <windows.h> #include "precomp.h"
#include <mmsystem.h>
#include <mmddk.h>
#include <ntddsnd.h>
#include <sndnames.h>
#include <sndtypes.h>
#include <mmebuddy.h>
#include <mment4.h>
/* /*
Open the parameters key of a sound driver. Open the parameters key of a sound driver.