[WINMINE]

* Move some inclusions to the main header.
* Remove inclusions and definitions that already exist in the main header.
CORE-7716

svn path=/trunk/; revision=61548
This commit is contained in:
Amine Khaldi 2014-01-06 20:51:41 +00:00
parent 5f67c3b083
commit b8c40cc9f4
3 changed files with 8 additions and 11 deletions

View file

@ -18,12 +18,7 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WIN32_NO_STATUS
#include <stdarg.h>
#include <windef.h>
#include "main.h"
#include "resource.h"
INT_PTR CALLBACK CustomDlgProc( HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam )
{

View file

@ -18,9 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#define WIN32_NO_STATUS
#include <stdarg.h>
#include <windef.h>
#include "main.h"
#include <winbase.h>
#include <winreg.h>
#include <wingdi.h>
@ -28,9 +27,6 @@
#include <stdlib.h>
#include <shellapi.h>
#include "main.h"
#include "resource.h"
#include <wine/debug.h>
WINE_DEFAULT_DEBUG_CHANNEL(winemine);

View file

@ -18,8 +18,14 @@
#pragma once
#include <stdarg.h>
#define WIN32_NO_STATUS
#include <windef.h>
#include <winuser.h>
#include "resource.h"
#define BEGINNER_MINES 10
#define BEGINNER_COLS 9
#define BEGINNER_ROWS 9