mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-15 16:11:25 +00:00
move header inclusion up
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39769 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
bd2c3557bc
commit
58ced060bf
1 changed files with 8 additions and 7 deletions
|
@ -21,6 +21,14 @@
|
|||
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifdef __MINGW32__
|
||||
#undef _WIN32_WINNT
|
||||
#define _WIN32_WINNT 0x0501 // Minimal target is Windows XP
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#endif
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import "PCDebugger.h"
|
||||
#import "PCDebuggerView.h"
|
||||
|
@ -29,14 +37,7 @@
|
|||
#import "PCDebuggerViewDelegateProtocol.h"
|
||||
#import "PipeDelegate.h"
|
||||
|
||||
#ifdef __MINGW32__
|
||||
#undef _WIN32_WINNT
|
||||
#define _WIN32_WINNT 0x0501 // Minimal target is Windows XP
|
||||
|
||||
#include <windows.h>
|
||||
#include <winbase.h>
|
||||
WINBASEAPI BOOL WINAPI DebugBreakProcess(HANDLE);
|
||||
#endif
|
||||
|
||||
#ifndef NOTIFICATION_CENTER
|
||||
#define NOTIFICATION_CENTER [NSNotificationCenter defaultCenter]
|
||||
|
|
Loading…
Reference in a new issue