Removed some more undefined types in Linux

This commit is contained in:
Felix Rueegg 2013-11-01 08:27:00 +01:00
parent 38da0fb308
commit 40d0623479
2 changed files with 4 additions and 4 deletions

View file

@ -239,7 +239,7 @@ extern void D_RunFrame( bool );
extern void I_ShutdownSound(); extern void I_ShutdownSound();
extern void I_ShutdownMusic(); extern void I_ShutdownMusic();
extern void I_ShutdownGraphics(); extern void I_ShutdownGraphics();
extern void I_ProcessSoundEvents( void ); //extern void I_ProcessSoundEvents( void );
void DoomLib::InitGlobals( void *ptr /* = NULL */ ) void DoomLib::InitGlobals( void *ptr /* = NULL */ )
@ -551,6 +551,6 @@ void DoomLib::SendNetwork() {
void DoomLib::RunSound() { void DoomLib::RunSound() {
I_ProcessSoundEvents(); //I_ProcessSoundEvents();
} }

View file

@ -105,7 +105,7 @@ M_DrawText
// //
// M_WriteFile // M_WriteFile
// //
boolean M_WriteFile ( char const* name, void* source, int length ) { bool M_WriteFile ( char const* name, void* source, int length ) {
idFile * handle = NULL; idFile * handle = NULL;
int count; int count;
@ -157,7 +157,7 @@ int M_ReadFile ( char const* name, byte** buffer ) {
// //
// Write a save game to the specified device using the specified game name. // Write a save game to the specified device using the specified game name.
// //
static qboolean SaveGame( void* source, DWORD length ) static qboolean SaveGame( void* source, int length )
{ {
return false; return false;
} }