[SNDVOL32]

* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61600
This commit is contained in:
Amine Khaldi 2014-01-13 12:42:34 +00:00
parent 1e68328c3c
commit 119084f800
5 changed files with 9 additions and 3 deletions

View file

@ -7,6 +7,8 @@
#include "sndvol32.h" #include "sndvol32.h"
#include <wingdi.h>
#define XLEFT (30) #define XLEFT (30)
#define XTOP (20) #define XTOP (20)
#define DIALOG_VOLUME_SIZE (150) #define DIALOG_VOLUME_SIZE (150)

View file

@ -25,6 +25,8 @@
#include "sndvol32.h" #include "sndvol32.h"
#include <winreg.h>
static INT static INT
LengthOfStrResource(IN HINSTANCE hInst, LengthOfStrResource(IN HINSTANCE hInst,
IN UINT uID) IN UINT uID)

View file

@ -22,6 +22,7 @@
* FILE: subsys/system/sndvol32/mixer.c * FILE: subsys/system/sndvol32/mixer.c
* PROGRAMMERS: Thomas Weidenmueller <w3seek@reactos.com> * PROGRAMMERS: Thomas Weidenmueller <w3seek@reactos.com>
*/ */
#include "sndvol32.h" #include "sndvol32.h"
#define NO_MIXER_SELECTED ((UINT)(~0)) #define NO_MIXER_SELECTED ((UINT)(~0))

View file

@ -22,8 +22,11 @@
* FILE: subsys/system/sndvol32/sndvol32.c * FILE: subsys/system/sndvol32/sndvol32.c
* PROGRAMMERS: Thomas Weidenmueller <w3seek@reactos.com> * PROGRAMMERS: Thomas Weidenmueller <w3seek@reactos.com>
*/ */
#include "sndvol32.h" #include "sndvol32.h"
#include <shellapi.h>
HINSTANCE hAppInstance; HINSTANCE hAppInstance;
ATOM MainWindowClass; ATOM MainWindowClass;
HWND hMainWnd; HWND hMainWnd;

View file

@ -2,14 +2,12 @@
#define __SNDVOL32_H #define __SNDVOL32_H
#include <stdarg.h> #include <stdarg.h>
#include <windef.h> #include <windef.h>
#include <winbase.h> #include <winbase.h>
#include <winreg.h>
#include <wingdi.h>
#include <winuser.h> #include <winuser.h>
#include <mmsystem.h> #include <mmsystem.h>
#include <commctrl.h> #include <commctrl.h>
#include <shellapi.h>
#include <tchar.h> #include <tchar.h>
#include <assert.h> #include <assert.h>