2 Copyright (C) 1996-1997 Id Software, Inc.
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.
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.
13 See the GNU General Public License for more details.
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.
20 // winquake.h: Win32-specific Quake header file
33 #define WM_MOUSEWHEEL 0x020A
36 extern HINSTANCE global_hInstance;
37 extern int global_nCmdShow;
41 extern LPDIRECTDRAW lpDD;
42 extern LPDIRECTDRAWSURFACE lpPrimary;
43 extern LPDIRECTDRAWSURFACE lpFrontBuffer;
44 extern LPDIRECTDRAWSURFACE lpBackBuffer;
45 extern LPDIRECTDRAWPALETTE lpDDPal;
46 extern LPDIRECTSOUND pDS;
47 extern LPDIRECTSOUNDBUFFER pDSBuf;
49 extern DWORD gSndBufSize;
51 void VID_LockBuffer (void);
52 void VID_UnlockBuffer (void);
56 typedef enum {MS_WINDOWED, MS_FULLSCREEN, MS_FULLDIB, MS_UNINIT} modestate_t;
58 extern modestate_t modestate;
60 extern HWND mainwindow;
61 extern qboolean ActiveApp, Minimized;
63 void IN_ShowMouse (void);
64 void IN_DeactivateMouse (void);
65 void IN_HideMouse (void);
66 void IN_ActivateMouse (void);
67 void IN_MouseEvent (int mstate);
69 extern qboolean winsock_lib_initialized;
71 extern int window_center_x, window_center_y, window_x, window_y;
72 extern RECT window_rect;
74 extern qboolean mouseinitialized;
76 extern HANDLE hinput, houtput;
78 void IN_UpdateClipCursor (void);
79 void CenterWindow(HWND hWndCenter, int width, int height, BOOL lefttopjustify);
81 void S_BlockSound (void);
82 void S_UnblockSound (void);
84 void VID_SetDefaultMode (void);
86 int (PASCAL FAR *pWSAStartup)(WORD wVersionRequired, LPWSADATA lpWSAData);
87 int (PASCAL FAR *pWSACleanup)(void);
88 int (PASCAL FAR *pWSAGetLastError)(void);
89 SOCKET (PASCAL FAR *psocket)(int af, int type, int protocol);
90 int (PASCAL FAR *pioctlsocket)(SOCKET s, long cmd, u_long FAR *argp);
91 int (PASCAL FAR *psetsockopt)(SOCKET s, int level, int optname,
92 const char FAR * optval, int optlen);
93 int (PASCAL FAR *precvfrom)(SOCKET s, char FAR * buf, int len, int flags,
94 struct sockaddr FAR *from, int FAR * fromlen);
95 int (PASCAL FAR *psendto)(SOCKET s, const char FAR * buf, int len, int flags,
96 const struct sockaddr FAR *to, int tolen);
97 int (PASCAL FAR *pclosesocket)(SOCKET s);
98 int (PASCAL FAR *pgethostname)(char FAR * name, int namelen);
99 struct hostent FAR * (PASCAL FAR *pgethostbyname)(const char FAR * name);
100 struct hostent FAR * (PASCAL FAR *pgethostbyaddr)(const char FAR * addr,
102 int (PASCAL FAR *pgetsockname)(SOCKET s, struct sockaddr FAR *name,