mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[CPLS]
* Add header guards to the main headers. CORE-7716 svn path=/trunk/; revision=61993
This commit is contained in:
parent
f80fa18b56
commit
50e209f423
14 changed files with 50 additions and 12 deletions
|
@ -1,3 +1,6 @@
|
|||
#ifndef _ACCESS_H
|
||||
#define _ACCESS_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
@ -68,4 +71,4 @@ INT_PTR CALLBACK KeyboardPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM
|
|||
INT_PTR CALLBACK MousePageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
INT_PTR CALLBACK SoundPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
/* EOF */
|
||||
#endif /* _ACCESS_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _APPWIZ_H
|
||||
#define _APPWIZ_H
|
||||
|
||||
#include <config.h>
|
||||
#include <wine/port.h>
|
||||
|
||||
|
@ -82,4 +85,4 @@ static inline WCHAR *heap_strdupAtoW(const char *str)
|
|||
return ret;
|
||||
}
|
||||
|
||||
/* EOF */
|
||||
#endif /* _APPWIZ_H */
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
#ifndef CONSOLE_H__
|
||||
#define CONSOLE_H__
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#include <limits.h> // just for UINT_MAX in layout.c
|
||||
#include <tchar.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <wingdi.h>
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _DESK_H
|
||||
#define _DESK_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
@ -126,3 +129,4 @@ RegLoadMUIStringW(IN HKEY hKey,
|
|||
IN DWORD Flags,
|
||||
IN LPCWSTR pszDirectory OPTIONAL);
|
||||
|
||||
#endif /* _DESK_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _INPUT_H
|
||||
#define _INPUT_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
@ -70,4 +73,4 @@ GetHotkeys(LPTSTR szHotkey, LPTSTR szLangHotkey, LPTSTR szLayoutHotkey);
|
|||
|
||||
void ShowLastWin32Error(HWND hWndOwner);
|
||||
|
||||
/* EOF */
|
||||
#endif /* _INPUT_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _INTL_H
|
||||
#define _INTL_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
@ -114,4 +117,4 @@ SetupApplet(HWND hwndDlg, LCID lcid);
|
|||
/* kblayouts.c */
|
||||
VOID AddNewKbLayoutsByLcid(LCID Lcid);
|
||||
|
||||
/* EOF */
|
||||
#endif /* _INTL_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _MAIN_H
|
||||
#define _MAIN_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
@ -61,4 +64,4 @@ PropSheetAddPage(HPROPSHEETPAGE hpage, LPARAM lParam);
|
|||
LONG APIENTRY
|
||||
MouseApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam);
|
||||
|
||||
/* EOF */
|
||||
#endif /* _MAIN_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _MMSYS_H
|
||||
#define _MMSYS_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
@ -79,4 +82,4 @@ AudioDlgProc(HWND hwndDlg,
|
|||
WPARAM wParam,
|
||||
LPARAM lParam);
|
||||
|
||||
/* EOF */
|
||||
#endif /* _MMSYS_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _POWERCFG_H
|
||||
#define _POWERCFG_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define _INC_WINDOWS
|
||||
|
@ -34,4 +37,4 @@ INT_PTR CALLBACK AlarmsDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lP
|
|||
INT_PTR CALLBACK AdvancedDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
INT_PTR CALLBACK HibernateDlgProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
/* EOF */
|
||||
#endif /* _POWERCFG_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _TIMEDATE_H
|
||||
#define _TIMEDATE_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define _INC_WINDOWS
|
||||
|
@ -118,4 +121,4 @@ typedef struct _NMMCCAUTOUPDATE
|
|||
BOOL RegisterMonthCalControl(IN HINSTANCE hInstance);
|
||||
VOID UnregisterMonthCalControl(IN HINSTANCE hInstance);
|
||||
|
||||
/* EOF */
|
||||
#endif /* _TIMEDATE_H */
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
|
||||
#include "usrmgr.h"
|
||||
|
||||
|
||||
VOID
|
||||
DebugPrintf(LPTSTR szFormat, ...)
|
||||
{
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
|
||||
#include "usrmgr.h"
|
||||
|
||||
|
||||
typedef struct _USER_DATA
|
||||
{
|
||||
HMENU hPopupMenu;
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
#define WIN32_NO_STATUS
|
||||
#ifndef _USRMGR_H
|
||||
#define _USRMGR_H
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
#include <windef.h>
|
||||
#include <winbase.h>
|
||||
#include <winuser.h>
|
||||
|
@ -43,3 +47,5 @@ CheckAccountName(HWND hwndDlg,
|
|||
/* userprops.c */
|
||||
BOOL
|
||||
UserProperties(HWND hwndDlg);
|
||||
|
||||
#endif /* _USRMGR_H */
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#ifndef _WINED3DCFG_PCH_
|
||||
#define _WINED3DCFG_PCH_
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define WIN32_NO_STATUS
|
||||
|
@ -36,3 +39,5 @@
|
|||
#define KEY_LOCKING L"RenderTargetLockMode"
|
||||
|
||||
INT_PTR CALLBACK GeneralPageProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
|
||||
#endif /* _WINED3DCFG_PCH_ */
|
||||
|
|
Loading…
Reference in a new issue