mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-23 04:42:47 +00:00
45 lines
1.4 KiB
C++
45 lines
1.4 KiB
C++
// Emacs style mode select -*- C++ -*-
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file
|
|
/// \brief Win32 Sharing
|
|
|
|
//#define WIN32_LEAN_AND_MEAN
|
|
#define RPC_NO_WINDOWS_H
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
|
|
extern HWND hWndMain;
|
|
|
|
extern INT appActive;
|
|
|
|
VOID I_GetSysMouseEvents(INT mouse_state);
|
|
extern UINT MSHWheelMessage;
|
|
|
|
extern BOOL nodinput;
|
|
BOOL LoadDirectInput(VOID);
|
|
|
|
//faB: midi channel Volume set is delayed by the MIDI stream callback thread, see win_snd.c
|
|
#define WM_MSTREAM_UPDATEVOLUME (WM_USER + 101)
|
|
|
|
// defined in win_sys.c
|
|
VOID I_BeginProfile(VOID); //for timing code
|
|
DWORD I_EndProfile(VOID);
|
|
|
|
VOID I_ShowLastError(BOOL MB);
|
|
VOID I_LoadingScreen (LPCSTR msg);
|
|
|
|
VOID I_RestartSysMouse(VOID);
|
|
VOID I_DoStartupMouse(VOID);
|