summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-07-28 01:21:46 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:36 +0200
commit6d5a3cec554f6afc5f075722fba7e2aa464f5676 (patch)
treed0a23200c53af8cd58cc649457a26ddf748c7f46 /src
parentfd8ed25d23c8187a2e6f9d7e81fdbd8f98b22f1a (diff)
More compiling...
Diffstat (limited to 'src')
-rw-r--r--src/avp/bh_agun.c4
-rw-r--r--src/avp/bh_ais.c4
-rw-r--r--src/avp/bh_alien.c2
-rw-r--r--src/avp/bh_corpse.c4
-rw-r--r--src/avp/bh_debri.c2
-rw-r--r--src/avp/bh_dummy.c4
-rw-r--r--src/avp/bh_far.c2
-rw-r--r--src/avp/bh_fhug.c2
-rw-r--r--src/avp/bh_gener.c2
-rw-r--r--src/avp/bh_marin.c6
-rw-r--r--src/avp/bh_near.c4
-rw-r--r--src/avp/bh_pred.c4
-rw-r--r--src/avp/bh_queen.c2
-rw-r--r--src/avp/bh_rubberduck.c2
-rw-r--r--src/avp/bh_weap.c4
-rw-r--r--src/avp/bh_xeno.c4
-rw-r--r--src/avp/cconvars.cpp6
-rw-r--r--src/avp/cdtrackselection.cpp4
-rw-r--r--src/avp/cheatmodes.c4
-rw-r--r--src/avp/consolelog.cpp2
-rw-r--r--src/avp/deaths.c4
-rw-r--r--src/avp/detaillevels.c2
-rw-r--r--src/avp/game.c4
-rw-r--r--src/avp/game_statistics.c4
-rw-r--r--src/avp/gamecmds.cpp5
-rw-r--r--src/avp/hud.c4
-rw-r--r--src/avp/inventry.c2
-rw-r--r--src/avp/movement.c4
-rw-r--r--src/avp/paintball.h2
-rw-r--r--src/avp/particle.c2
-rw-r--r--src/avp/player.c4
-rw-r--r--src/avp/pmove.c2
-rw-r--r--src/avp/win95/gadgets/conssym.hpp4
-rw-r--r--src/avp/win95/psndplat.h9
-rw-r--r--src/win95/db.h6
-rw-r--r--src/win95/dxlog.h18
-rw-r--r--src/win95/list_tem.hpp2
-rw-r--r--src/win95/platform.h13
-rw-r--r--src/win95/showcmds.h5
39 files changed, 93 insertions, 71 deletions
diff --git a/src/avp/bh_agun.c b/src/avp/bh_agun.c
index 64179f8..87c5562 100644
--- a/src/avp/bh_agun.c
+++ b/src/avp/bh_agun.c
@@ -38,10 +38,10 @@
#include "bh_agun.h"
#include "plat_shp.h"
#include "psnd.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "sequnces.h"
#include "huddefs.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "sfx.h"
#include "bh_marin.h"
#include "bh_far.h"
diff --git a/src/avp/bh_ais.c b/src/avp/bh_ais.c
index a27054b..87ba369 100644
--- a/src/avp/bh_ais.c
+++ b/src/avp/bh_ais.c
@@ -26,10 +26,10 @@
#include "psnd.h"
#include "equipmnt.h"
#include "los.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "targeting.h"
#include "dxlog.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "huddefs.h"
#define UseLocalAssert Yes
diff --git a/src/avp/bh_alien.c b/src/avp/bh_alien.c
index ea3cc6d..3e1e1ba 100644
--- a/src/avp/bh_alien.c
+++ b/src/avp/bh_alien.c
@@ -36,7 +36,7 @@
#define UseLocalAssert Yes
#include "ourasert.h"
#include "pldnet.h"
-#include "AvP_UserProfile.h"
+#include "avp_userprofile.h"
/* external global variables used in this file */
extern int ModuleArraySize;
diff --git a/src/avp/bh_corpse.c b/src/avp/bh_corpse.c
index 51d19aa..ce9689a 100644
--- a/src/avp/bh_corpse.c
+++ b/src/avp/bh_corpse.c
@@ -32,7 +32,7 @@
#include "pldghost.h"
#include "pldnet.h"
#include "psndplat.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "los.h"
#include "bh_corpse.h"
@@ -42,7 +42,7 @@
#include "ourasert.h"
#include "sequnces.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "extents.h"
extern int NormalFrameTime;
diff --git a/src/avp/bh_debri.c b/src/avp/bh_debri.c
index 6705437..c7bbc73 100644
--- a/src/avp/bh_debri.c
+++ b/src/avp/bh_debri.c
@@ -32,7 +32,7 @@
#include "pldghost.h"
#endif
-#include "AvP_UserProfile.h"
+#include "avp_userprofile.h"
#include "savegame.h"
#include <math.h>
diff --git a/src/avp/bh_dummy.c b/src/avp/bh_dummy.c
index 3ee3c5e..56ebc71 100644
--- a/src/avp/bh_dummy.c
+++ b/src/avp/bh_dummy.c
@@ -36,10 +36,10 @@
#include "bh_agun.h"
#include "plat_shp.h"
#include "psnd.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "sequnces.h"
#include "huddefs.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "sfx.h"
#include "bh_marin.h"
#include "bh_dummy.h"
diff --git a/src/avp/bh_far.c b/src/avp/bh_far.c
index 8f851fa..d85f5e6 100644
--- a/src/avp/bh_far.c
+++ b/src/avp/bh_far.c
@@ -22,7 +22,7 @@
#include "pvisible.h"
#include "bh_marin.h"
#include "weapons.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#define UseLocalAssert Yes
#include "ourasert.h"
diff --git a/src/avp/bh_fhug.c b/src/avp/bh_fhug.c
index fb0ddcc..c47f44c 100644
--- a/src/avp/bh_fhug.c
+++ b/src/avp/bh_fhug.c
@@ -23,7 +23,7 @@
#define UseLocalAssert Yes
#include "ourasert.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "sfx.h"
#define HUGGER_STATE_PRINT 0
diff --git a/src/avp/bh_gener.c b/src/avp/bh_gener.c
index bfb02d7..446e1b3 100644
--- a/src/avp/bh_gener.c
+++ b/src/avp/bh_gener.c
@@ -23,7 +23,7 @@
#include "ourasert.h"
#include "huddefs.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
/* externs for this file */
extern int NormalFrameTime;
diff --git a/src/avp/bh_marin.c b/src/avp/bh_marin.c
index 5a9d21f..cad6e0c 100644
--- a/src/avp/bh_marin.c
+++ b/src/avp/bh_marin.c
@@ -33,7 +33,7 @@
#include "pldghost.h"
#include "pldnet.h"
#include "psndplat.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "los.h"
#include "bh_corpse.h"
#include "bh_dummy.h"
@@ -45,9 +45,9 @@
#include "ourasert.h"
#include "sequnces.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "extents.h"
-#include "AvP_UserProfile.h"
+#include "avp_userprofile.h"
#define ALL_PULSERIFLES 0
#define MOTIONTRACKERS 0
diff --git a/src/avp/bh_near.c b/src/avp/bh_near.c
index 6d05976..aed2a70 100644
--- a/src/avp/bh_near.c
+++ b/src/avp/bh_near.c
@@ -24,8 +24,8 @@
#include "psnd.h"
#include "psndplat.h"
#include "dxlog.h"
-#include "ShowCmds.h"
-#include "AI_Sight.h"
+#include "showcmds.h"
+#include "ai_sight.h"
#include "los.h"
#include "bh_gener.h"
#include "pldnet.h"
diff --git a/src/avp/bh_pred.c b/src/avp/bh_pred.c
index ab03b7d..5ba27fe 100644
--- a/src/avp/bh_pred.c
+++ b/src/avp/bh_pred.c
@@ -26,10 +26,10 @@ Source file for predator AI
#include "psnd.h"
#include "equipmnt.h"
#include "los.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "targeting.h"
#include "dxlog.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "huddefs.h"
#include "pldghost.h"
#include "bh_gener.h"
diff --git a/src/avp/bh_queen.c b/src/avp/bh_queen.c
index 99cccee..df10737 100644
--- a/src/avp/bh_queen.c
+++ b/src/avp/bh_queen.c
@@ -26,7 +26,7 @@
#include "weapons.h"
#include "extents.h"
#include "sequnces.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "targeting.h"
#include "dxlog.h"
#include <math.h>
diff --git a/src/avp/bh_rubberduck.c b/src/avp/bh_rubberduck.c
index 3f971f7..afec36b 100644
--- a/src/avp/bh_rubberduck.c
+++ b/src/avp/bh_rubberduck.c
@@ -18,7 +18,7 @@
#include "particle.h"
#include "bh_types.h"
-#include "bh_RubberDuck.h"
+#include "bh_rubberduck.h"
#include "bh_weap.h"
#include "sfx.h"
diff --git a/src/avp/bh_weap.c b/src/avp/bh_weap.c
index 039c5fe..d530635 100644
--- a/src/avp/bh_weap.c
+++ b/src/avp/bh_weap.c
@@ -31,10 +31,10 @@
#include "particle.h"
#include "sfx.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "savegame.h"
#include "los.h"
-#include "DetailLevels.h"
+#include "detaillevels.h"
#if SupportWindows95
/* for win95 net game support */
diff --git a/src/avp/bh_xeno.c b/src/avp/bh_xeno.c
index 53ab42c..29f8b29 100644
--- a/src/avp/bh_xeno.c
+++ b/src/avp/bh_xeno.c
@@ -24,10 +24,10 @@
#include "bh_debri.h"
#include "plat_shp.h"
#include "particle.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "sequnces.h"
#include "huddefs.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "sfx.h"
#include "bh_marin.h"
#include "bh_far.h"
diff --git a/src/avp/cconvars.cpp b/src/avp/cconvars.cpp
index 867ccec..38342a9 100644
--- a/src/avp/cconvars.cpp
+++ b/src/avp/cconvars.cpp
@@ -27,15 +27,15 @@
#include "dxlog.h"
#include "avp_menus.h"
#include "pheromon.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#include "pfarlocs.h"
#define UseLocalAssert Yes
#include "ourasert.h"
#include "game_statistics.h"
-#include "AvP_EnvInfo.h"
-#include "AvP_UserProfile.h"
+#include "avp_envinfo.h"
+#include "avp_userprofile.h"
extern "C"
{
diff --git a/src/avp/cdtrackselection.cpp b/src/avp/cdtrackselection.cpp
index 5b4887d..826c041 100644
--- a/src/avp/cdtrackselection.cpp
+++ b/src/avp/cdtrackselection.cpp
@@ -4,11 +4,11 @@ extern "C"
#include "ourasert.h"
#include "psndplat.h"
#include "dxlog.h"
-#include "CD_player.h"
+#include "cd_player.h"
#include "avp_menus.h"
#include "gamedef.h"
-#include "AvP_EnvInfo.h"
+#include "avp_envinfo.h"
#include "dxlog.h"
};
diff --git a/src/avp/cheatmodes.c b/src/avp/cheatmodes.c
index 3a06a8b..526ad63 100644
--- a/src/avp/cheatmodes.c
+++ b/src/avp/cheatmodes.c
@@ -3,8 +3,8 @@
#include "module.h"
#include "stratdef.h"
-#include "AvP_UserProfile.h"
-#include "AvP_Menus.h"
+#include "avp_userprofile.h"
+#include "avp_menus.h"
int CheatMode_Active=0;
int CheatMode_Species=0;
diff --git a/src/avp/consolelog.cpp b/src/avp/consolelog.cpp
index 3c212c4..7b43053 100644
--- a/src/avp/consolelog.cpp
+++ b/src/avp/consolelog.cpp
@@ -15,7 +15,7 @@
#include "gameplat.h"
#include "debuglog.hpp"
-#include "ConsoleLog.hpp"
+#include "consolelog.hpp"
#include "bh_types.h"
#include "inventry.h"
diff --git a/src/avp/deaths.c b/src/avp/deaths.c
index 489eb50..d7e391a 100644
--- a/src/avp/deaths.c
+++ b/src/avp/deaths.c
@@ -25,10 +25,10 @@
#include "psnd.h"
#include "equipmnt.h"
#include "los.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "targeting.h"
#include "dxlog.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#define UseLocalAssert Yes
#include "ourasert.h"
diff --git a/src/avp/detaillevels.c b/src/avp/detaillevels.c
index 7fc88ef..8e78ebf 100644
--- a/src/avp/detaillevels.c
+++ b/src/avp/detaillevels.c
@@ -1,4 +1,4 @@
-#include "DetailLevels.h"
+#include "detaillevels.h"
DETAIL_LEVELS LocalDetailLevels;
MENU_DETAIL_LEVEL_OPTIONS MenuDetailLevelOptions;
diff --git a/src/avp/game.c b/src/avp/game.c
index 503d128..473e8cf 100644
--- a/src/avp/game.c
+++ b/src/avp/game.c
@@ -23,13 +23,13 @@
#include "particle.h"
#include "sfx.h"
#include "version.h"
-#include "bh_RubberDuck.h"
+#include "bh_rubberduck.h"
#include "bh_marin.h"
#include "dxlog.h"
#include "avp_menus.h"
#include "avp_userprofile.h"
#include "davehook.h"
-#include "CDTrackSelection.h"
+#include "cdtrackselection.h"
#include "savegame.h"
// Added 18/11/97 by DHM: all hooks for my code
diff --git a/src/avp/game_statistics.c b/src/avp/game_statistics.c
index b2a3dd8..110254d 100644
--- a/src/avp/game_statistics.c
+++ b/src/avp/game_statistics.c
@@ -16,8 +16,8 @@
#define UseLocalAssert Yes
#include "ourasert.h"
-#include "AvP_EnvInfo.h"
-#include "AvP_UserProfile.h"
+#include "avp_envinfo.h"
+#include "avp_userprofile.h"
#define FIXED_MINUTE (ONE_FIXED*60)
diff --git a/src/avp/gamecmds.cpp b/src/avp/gamecmds.cpp
index 21f0b96..c84b538 100644
--- a/src/avp/gamecmds.cpp
+++ b/src/avp/gamecmds.cpp
@@ -29,17 +29,16 @@ extern "C"
#include "cheat.h"
#include "cd_player.h"
#include "dynblock.h"
-#include "bh_RubberDuck.h"
+#include "bh_rubberduck.h"
#include "pvisible.h"
#include "pldnet.h"
#include "lighting.h"
#include "paintball.h"
#include "decal.h"
-#include "ConsoleLog.hpp"
+#include "consolelog.hpp"
#include "psndplat.h"
#include "avp_menus.h"
-#include "smacker.h"
#include "detaillevels.h"
#include "savegame.h"
diff --git a/src/avp/hud.c b/src/avp/hud.c
index ba0f3b3..632f7d4 100644
--- a/src/avp/hud.c
+++ b/src/avp/hud.c
@@ -31,7 +31,7 @@
#include "gadget.h"
#include "lighting.h"
#include "d3d_hud.h"
-#include "frustrum.h"
+#include "frustum.h"
#include "pldghost.h"
#include "d3d_render.h"
@@ -42,7 +42,7 @@
#include "ourasert.h"
#include "vision.h"
-#include "BonusAbilities.h"
+#include "bonusabilities.h"
#include "avp_menus.h"
#include "showcmds.h"
#include "game_statistics.h"
diff --git a/src/avp/inventry.c b/src/avp/inventry.c
index 0c9688c..220e384 100644
--- a/src/avp/inventry.c
+++ b/src/avp/inventry.c
@@ -25,7 +25,7 @@ rounds fired etc etc etc*/
#include "pldghost.h"
#endif
-#include "AvP_UserProfile.h"
+#include "avp_userprofile.h"
#define UseLocalAssert Yes
#include "ourasert.h"
diff --git a/src/avp/movement.c b/src/avp/movement.c
index ff43511..5f342da 100644
--- a/src/avp/movement.c
+++ b/src/avp/movement.c
@@ -25,10 +25,10 @@
#include "psnd.h"
#include "equipmnt.h"
#include "los.h"
-#include "AI_Sight.h"
+#include "ai_sight.h"
#include "targeting.h"
#include "dxlog.h"
-#include "ShowCmds.h"
+#include "showcmds.h"
#define UseLocalAssert Yes
#include "ourasert.h"
diff --git a/src/avp/paintball.h b/src/avp/paintball.h
index 47f93ab..897a9ac 100644
--- a/src/avp/paintball.h
+++ b/src/avp/paintball.h
@@ -2,7 +2,7 @@
#ifndef _included_paintball_h_ /* Is this your first time? */
#define _included_paintball_h_ 1
-#include "Decal.h"
+#include "decal.h"
typedef struct
{
diff --git a/src/avp/particle.c b/src/avp/particle.c
index c57c59b..0c941c9 100644
--- a/src/avp/particle.c
+++ b/src/avp/particle.c
@@ -5164,7 +5164,7 @@ void HandlePheromoneTrails(void)
}
}
-#include "frustrum.h"
+#include "frustum.h"
void RenderTrailSegment(PHEROMONE_TRAIL *trailPtr)
{
POLYHEADER fakeHeader;
diff --git a/src/avp/player.c b/src/avp/player.c
index 1d73f10..32240f4 100644
--- a/src/avp/player.c
+++ b/src/avp/player.c
@@ -35,8 +35,8 @@ so player.c is looking a bit bare at the moment. */
#include "pldghost.h"
#include "dp_func.h"
#endif
-#include "ShowCmds.h"
-#include "BonusAbilities.h"
+#include "showcmds.h"
+#include "bonusabilities.h"
#define PLAYER_HMODEL 0
diff --git a/src/avp/pmove.c b/src/avp/pmove.c
index eefabc3..24ed9b6 100644
--- a/src/avp/pmove.c
+++ b/src/avp/pmove.c
@@ -34,7 +34,7 @@
#include "los.h"
#include "krender.h"
#include "pldnet.h"
-#include "BonusAbilities.h"
+#include "bonusabilities.h"
#include "avp_menus.h"
#include "lighting.h"
#include "scream.h"
diff --git a/src/avp/win95/gadgets/conssym.hpp b/src/avp/win95/gadgets/conssym.hpp
index a3e8161..2c03cd6 100644
--- a/src/avp/win95/gadgets/conssym.hpp
+++ b/src/avp/win95/gadgets/conssym.hpp
@@ -30,6 +30,7 @@
/* Macros ***************************************************************/
/* Type definitions *****************************************************/
+
class ConsoleSymbol
{
friend class TextInputState;
@@ -63,7 +64,8 @@
private:
- static List <ConsoleSymbol*> List_pConsoleSym;
+
+ static List <ConsoleSymbol *> List_pConsoleSym;
}; // suggested naming: "ConsoleSym"
/* Exported globals *****************************************************/
diff --git a/src/avp/win95/psndplat.h b/src/avp/win95/psndplat.h
index 7d8f1de..4fc39ba 100644
--- a/src/avp/win95/psndplat.h
+++ b/src/avp/win95/psndplat.h
@@ -26,7 +26,8 @@ typedef struct soundsampledata
int activeInstances;
int volume;
int pitch;
- LPDIRECTSOUNDBUFFER dsBufferP;
+// LPDIRECTSOUNDBUFFER dsBufferP;
+
unsigned int flags;
int dsFrequency;
char * wavName;
@@ -57,9 +58,9 @@ typedef struct activesoundsample
unsigned int reverb_off :1;
SOUND3DDATA threedeedata;
- LPDIRECTSOUNDBUFFER dsBufferP;
- LPDIRECTSOUND3DBUFFER ds3DBufferP;
- LPKSPROPERTYSET PropSetP;
+// LPDIRECTSOUNDBUFFER dsBufferP;
+// LPDIRECTSOUND3DBUFFER ds3DBufferP;
+// LPKSPROPERTYSET PropSetP;
}ACTIVESOUNDSAMPLE;
diff --git a/src/win95/db.h b/src/win95/db.h
index cc0ee47..7c778db 100644
--- a/src/win95/db.h
+++ b/src/win95/db.h
@@ -68,11 +68,7 @@
#define DB_H_INCLUDED
/* I N C L U D E D S ************************************************** */
-#include "advwin32.h"
-#ifndef DB_NOWINDOWS
-// #include <windows.h>
- #include "advwin32.h"
-#endif
+//#include "advwin32.h"
/* Permit use in a C++ source file. */
#ifdef __cplusplus
diff --git a/src/win95/dxlog.h b/src/win95/dxlog.h
index d67b57c..8636720 100644
--- a/src/win95/dxlog.h
+++ b/src/win95/dxlog.h
@@ -2,9 +2,6 @@
#define _included_dxlog_h_
#include "system.h"
-#include "ddraw.h"
-#include "d3d.h"
-#include "d3drm.h"
#ifdef __cplusplus
extern "C" {
@@ -12,7 +9,7 @@ extern "C" {
#if debug
-void dx_err_log(HRESULT error, int line, char const * file);
+void dx_err_log(int error, int line, char const * file);
void dx_str_log(char const * str, int line, char const * file);
void dx_line_log(int line, char const * file);
void dx_strf_log(char const * fmt, ...);
@@ -23,10 +20,21 @@ void dx_strf_log(char const * fmt, ...);
#else
+/* TODO: make these static inline to hush the compiler */
+void dx_err_log(int error, int line, char const * file);
+void dx_str_log(char const * str, int line, char const * file);
+void dx_line_log(int line, char const * file);
+void dx_strf_log(char const * fmt, ...);
+
+#define LOGDXERR(error) dx_err_log(error,__LINE__,__FILE__)
+#define LOGDXSTR(str) dx_str_log(str,__LINE__,__FILE__)
+#define LOGDXFMT(args) (dx_line_log(__LINE__,__FILE__),dx_strf_log args)
+
+/*
#define LOGDXERR(error) (void)0
#define LOGDXSTR(str) (void)0
#define LOGDXFMT(args) (void)0
-
+*/
#endif
diff --git a/src/win95/list_tem.hpp b/src/win95/list_tem.hpp
index 1bd59ef..020aacc 100644
--- a/src/win95/list_tem.hpp
+++ b/src/win95/list_tem.hpp
@@ -18,7 +18,7 @@
#ifndef list_template_hpp
#define list_template_hpp
-#pragma once
+//#pragma once
#include <stdio.h>
diff --git a/src/win95/platform.h b/src/win95/platform.h
index 9059f19..44c245d 100644
--- a/src/win95/platform.h
+++ b/src/win95/platform.h
@@ -1,6 +1,9 @@
#ifndef PLATFORM_INCLUDED
#define PLATFORM_INCLUDED
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
#include <stdint.h> // int64_t
#include "shape.h" // struct imageheader
@@ -33,12 +36,20 @@ extern "C" {
#define max(a, b) (((a) > (b)) ? (a) : (b))
#endif
-#define stricmp strcasecmp
+#define TRUE 1
+#define FALSE 0
+
+#define stricmp strcasecmp
+#define _stricmp strcasecmp
/* Types */
+/* windows junk */
typedef int GUID;
typedef int DPID;
+typedef int HINSTANCE;
+typedef int WPARAM;
+typedef int LPARAM;
typedef int BOOL;
diff --git a/src/win95/showcmds.h b/src/win95/showcmds.h
index bbb1d41..6d344c9 100644
--- a/src/win95/showcmds.h
+++ b/src/win95/showcmds.h
@@ -30,6 +30,7 @@ extern struct DEBUGGINGTEXTOPTIONS ShowDebuggingText;
#define DEBUGGING_TEXT_ON 0
#endif
+#if 0 /* stupid defines */
#if DEBUGGING_TEXT_ON
extern int PrintDebuggingText(const char* t, ...);
#else
@@ -41,3 +42,7 @@ extern int ReleasePrintDebuggingText(const char* t, ...);
#else
#define PrintDebuggingText(ignore)
#endif
+#endif /* ... */
+
+extern int PrintDebuggingText(const char* t, ...);
+extern int ReleasePrintDebuggingText(const char* t, ...);