]> icculus.org git repositories - divverent/darkplaces.git/blob - winquake.h
81ceeab92ae9abf890a6a5f7f4047f9aa46a881b
[divverent/darkplaces.git] / winquake.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // winquake.h: Win32-specific Quake header file
21
22 #pragma warning( disable : 4229 )  // mgraph gets this
23
24 #include <windows.h>
25 #define WM_MOUSEWHEEL                   0x020A
26
27 #ifndef SERVERONLY
28 #include <ddraw.h>
29 #include <dsound.h>
30 #endif
31
32 extern  HINSTANCE       global_hInstance;
33 extern  int                     global_nCmdShow;
34
35 #ifndef SERVERONLY
36
37 extern LPDIRECTDRAW             lpDD;
38 extern qboolean                 DDActive;
39 extern LPDIRECTDRAWSURFACE      lpPrimary;
40 extern LPDIRECTDRAWSURFACE      lpFrontBuffer;
41 extern LPDIRECTDRAWSURFACE      lpBackBuffer;
42 extern LPDIRECTDRAWPALETTE      lpDDPal;
43 extern LPDIRECTSOUND pDS;
44 extern LPDIRECTSOUNDBUFFER pDSBuf;
45
46 extern DWORD gSndBufSize;
47 //#define SNDBUFSIZE 65536
48
49 void    VID_LockBuffer (void);
50 void    VID_UnlockBuffer (void);
51
52 #endif
53
54 typedef enum {MS_WINDOWED, MS_FULLSCREEN, MS_FULLDIB, MS_UNINIT} modestate_t;
55
56 extern modestate_t      modestate;
57
58 extern HWND                     mainwindow;
59 extern qboolean         ActiveApp, Minimized;
60
61 extern qboolean WinNT;
62
63 int VID_ForceUnlockedAndReturnState (void);
64 void VID_ForceLockState (int lk);
65
66 void IN_ShowMouse (void);
67 void IN_DeactivateMouse (void);
68 void IN_HideMouse (void);
69 void IN_ActivateMouse (void);
70 void IN_RestoreOriginalMouseState (void);
71 void IN_SetQuakeMouseState (void);
72 void IN_MouseEvent (int mstate);
73
74 extern qboolean winsock_lib_initialized;
75
76 extern cvar_t           _windowed_mouse;
77
78 extern int              window_center_x, window_center_y;
79 extern RECT             window_rect;
80
81 extern qboolean mouseinitialized;
82 extern HWND             hwnd_dialog;
83
84 extern HANDLE   hinput, houtput;
85
86 void IN_UpdateClipCursor (void);
87 void CenterWindow(HWND hWndCenter, int width, int height, BOOL lefttopjustify);
88
89 void S_BlockSound (void);
90 void S_UnblockSound (void);
91
92 void VID_SetDefaultMode (void);
93
94 int (PASCAL FAR *pWSAStartup)(WORD wVersionRequired, LPWSADATA lpWSAData);
95 int (PASCAL FAR *pWSACleanup)(void);
96 int (PASCAL FAR *pWSAGetLastError)(void);
97 SOCKET (PASCAL FAR *psocket)(int af, int type, int protocol);
98 int (PASCAL FAR *pioctlsocket)(SOCKET s, long cmd, u_long FAR *argp);
99 int (PASCAL FAR *psetsockopt)(SOCKET s, int level, int optname,
100                                                           const char FAR * optval, int optlen);
101 int (PASCAL FAR *precvfrom)(SOCKET s, char FAR * buf, int len, int flags,
102                                                         struct sockaddr FAR *from, int FAR * fromlen);
103 int (PASCAL FAR *psendto)(SOCKET s, const char FAR * buf, int len, int flags,
104                                                   const struct sockaddr FAR *to, int tolen);
105 int (PASCAL FAR *pclosesocket)(SOCKET s);
106 int (PASCAL FAR *pgethostname)(char FAR * name, int namelen);
107 struct hostent FAR * (PASCAL FAR *pgethostbyname)(const char FAR * name);
108 struct hostent FAR * (PASCAL FAR *pgethostbyaddr)(const char FAR * addr,
109                                                                                                   int len, int type);
110 int (PASCAL FAR *pgetsockname)(SOCKET s, struct sockaddr FAR *name,
111                                                            int FAR * namelen);