[SNDVOL32]
authorAmine Khaldi <amine.khaldi@reactos.org>
Mon, 13 Jan 2014 12:42:34 +0000 (12:42 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Mon, 13 Jan 2014 12:42:34 +0000 (12:42 +0000)
* Remove one time inclusions from the main header and put them back where they belong.
CORE-7716

svn path=/trunk/; revision=61600

reactos/base/applications/sndvol32/dialog.c
reactos/base/applications/sndvol32/misc.c
reactos/base/applications/sndvol32/mixer.c
reactos/base/applications/sndvol32/sndvol32.c
reactos/base/applications/sndvol32/sndvol32.h

index 59d3fd9..1c83b61 100644 (file)
@@ -7,6 +7,8 @@
 
 #include "sndvol32.h"
 
+#include <wingdi.h>
+
 #define XLEFT (30)
 #define XTOP (20)
 #define DIALOG_VOLUME_SIZE (150)
index 17e3eb2..3c75ee9 100644 (file)
@@ -25,6 +25,8 @@
 
 #include "sndvol32.h"
 
+#include <winreg.h>
+
 static INT
 LengthOfStrResource(IN HINSTANCE hInst,
                     IN UINT uID)
index 3445184..16b2a16 100644 (file)
@@ -22,6 +22,7 @@
  * FILE:        subsys/system/sndvol32/mixer.c
  * PROGRAMMERS: Thomas Weidenmueller <w3seek@reactos.com>
  */
+
 #include "sndvol32.h"
 
 #define NO_MIXER_SELECTED ((UINT)(~0))
index a09718f..e31f43e 100644 (file)
  * FILE:        subsys/system/sndvol32/sndvol32.c
  * PROGRAMMERS: Thomas Weidenmueller <w3seek@reactos.com>
  */
+
 #include "sndvol32.h"
 
+#include <shellapi.h>
+
 HINSTANCE hAppInstance;
 ATOM MainWindowClass;
 HWND hMainWnd;
index bab57c7..cd9c7ad 100644 (file)
@@ -2,14 +2,12 @@
 #define __SNDVOL32_H
 
 #include <stdarg.h>
+
 #include <windef.h>
 #include <winbase.h>
-#include <winreg.h>
-#include <wingdi.h>
 #include <winuser.h>
 #include <mmsystem.h>
 #include <commctrl.h>
-#include <shellapi.h>
 #include <tchar.h>
 #include <assert.h>