Move src/windows to src/backends/windows

This commit is contained in:
Yamagi Burmeister 2012-08-01 14:12:05 +02:00
parent 3fb8492398
commit 399c581f06
13 changed files with 19 additions and 19 deletions

View File

@ -513,11 +513,11 @@ CLIENT_OBJS_ := \
ifeq ($(OSTYPE), Windows)
CLIENT_OBJS_ += \
src/windows/mem.o \
src/windows/network.o \
src/windows/qal.o \
src/windows/system.o \
src/windows/vid.o
src/backends/windows/mem.o \
src/backends/windows/network.o \
src/backends/windows/qal.o \
src/backends/windows/system.o \
src/backends/windows/vid.o
else
CLIENT_OBJS_ += \
src/backends/unix/hunk.o \
@ -565,9 +565,9 @@ SERVER_OBJS_ := \
ifeq ($(OSTYPE), Windows)
SERVER_OBJS_ += \
src/windows/mem.o \
src/windows/network.o \
src/windows/system.o
src/backends/windows/mem.o \
src/backends/windows/network.o \
src/backends/windows/system.o
else
SERVER_OBJS_ += \
src/backends/unix/hunk.o \
@ -605,8 +605,8 @@ OPENGL_OBJS_ = \
ifeq ($(OSTYPE), Windows)
OPENGL_OBJS_ += \
src/windows/mem.o \
src/windows/qgl.o
src/backends/windows/mem.o \
src/backends/windows/qgl.o
else
OPENGL_OBJS_ += \
src/backends/unix/hunk.o \

View File

@ -24,7 +24,7 @@
* =======================================================================
*/
#include "../common/header/common.h"
#include "../../common/header/common.h"
#include "header/winquake.h"
byte *membase;

View File

@ -30,7 +30,7 @@
#include <winsock2.h>
#include <ws2tcpip.h>
#include <wsipx.h>
#include "../common/header/common.h"
#include "../../common/header/common.h"
#define MAX_LOOPBACK 4
#define QUAKE2MCAST "ff12::666"

View File

@ -36,7 +36,7 @@
#include <AL/alext.h>
#include <windows.h>
#include "../common/header/common.h"
#include "../../common/header/common.h"
#include "header/qal.h"
#define GPA(a) (void *)GetProcAddress(handle, a)

View File

@ -30,7 +30,7 @@
*/
#include <float.h>
#include "../refresh/header/local.h"
#include "../../refresh/header/local.h"
#include "header/glwindow.h"
int (WINAPI *qwglChoosePixelFormat)(HDC, CONST PIXELFORMATDESCRIPTOR *);

View File

@ -34,7 +34,7 @@
#include <conio.h>
#include <shlobj.h>
#include "../common/header/common.h"
#include "../../common/header/common.h"
#include "header/resource.h"
#include "header/winquake.h"

View File

@ -35,9 +35,9 @@
#include <assert.h>
#include <float.h>
#include "../common/header/common.h"
#include "../../common/header/common.h"
#include "header/winquake.h"
#include "../client/header/client.h"
#include "../../client/header/client.h"
/* Structure containing functions
* exported from refresh DLL */

View File

@ -35,7 +35,7 @@
#include "header/vorbis.h"
#ifdef _WIN32
#include "../../windows/header/qal.h"
#include "../../backends/windows/header/qal.h"
#else
#include "../../backends/unix/header/qal.h"
#endif

View File

@ -31,7 +31,7 @@
#include "header/vorbis.h"
#ifdef _WIN32
#include "../../windows/header/qal.h"
#include "../../backends/windows/header/qal.h"
#else
#include "../../backends/unix/header/qal.h"
#endif