mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-20 08:21:08 +00:00
Remove winquake.h
The only thing that header did was to include windows.h.
This commit is contained in:
parent
cfddff132b
commit
7ee34acae8
3 changed files with 2 additions and 50 deletions
|
@ -198,7 +198,6 @@ set(Backends-Windows-Source
|
|||
|
||||
set(Backends-Windows-Header
|
||||
${BACKENDS_SRC_DIR}/windows/header/resource.h
|
||||
${BACKENDS_SRC_DIR}/windows/header/winquake.h
|
||||
)
|
||||
|
||||
set(REF-Windows-Source
|
||||
|
|
|
@ -1,48 +0,0 @@
|
|||
/*
|
||||
* Copyright (C) 1997-2001 Id Software, Inc.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or (at
|
||||
* your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but
|
||||
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* See the GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
* 02111-1307, USA.
|
||||
*
|
||||
* =======================================================================
|
||||
*
|
||||
* Header file for Windows specific stuff.
|
||||
*
|
||||
* =======================================================================
|
||||
*/
|
||||
|
||||
#ifndef WIN_WINQUAKE_H
|
||||
#define WIN_WINQUAKE_H
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#define WINDOW_STYLE (WS_OVERLAPPED | WS_BORDER | WS_CAPTION | WS_VISIBLE)
|
||||
|
||||
#ifndef _PC_24
|
||||
#define _PC_24 0x00020000
|
||||
#endif
|
||||
|
||||
#ifndef _MCW_PC
|
||||
#define _MCW_PC 0x00030000
|
||||
#endif
|
||||
|
||||
extern HINSTANCE global_hInstance;
|
||||
extern qboolean ActiveApp, Minimized;
|
||||
extern int window_center_x, window_center_y;
|
||||
extern RECT window_rect;
|
||||
|
||||
#endif
|
||||
|
|
@ -24,8 +24,9 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
#include "../../../common/header/common.h"
|
||||
#include "../header/winquake.h"
|
||||
|
||||
byte *membase;
|
||||
int hunkcount;
|
||||
|
|
Loading…
Reference in a new issue