[iortcw] 191/497: All: Remove unused functions from null_main.c and null_input.c
Simon McVittie
smcv at debian.org
Wed Sep 21 19:48:03 UTC 2016
This is an automated email from the git hooks/post-receive script.
smcv pushed a commit to annotated tag 1.42d
in repository iortcw.
commit 1f3ecf1cb69cb1198a15f3a747c66b036683c111
Author: M4N4T4RMS at gmail.com <M4N4T4RMS at gmail.com@e65d2741-a53d-b2dc-ae96-bb75fa5e4c4a>
Date: Fri Aug 29 16:07:44 2014 +0000
All: Remove unused functions from null_main.c and null_input.c
---
MP/code/null/null_input.c | 2 --
MP/code/null/null_main.c | 47 +----------------------------------------------
SP/code/null/null_input.c | 2 --
SP/code/null/null_main.c | 47 +----------------------------------------------
4 files changed, 2 insertions(+), 96 deletions(-)
diff --git a/MP/code/null/null_input.c b/MP/code/null/null_input.c
index 345fea7..7b0e920 100644
--- a/MP/code/null/null_input.c
+++ b/MP/code/null/null_input.c
@@ -38,5 +38,3 @@ void IN_Shutdown( void ) {
void IN_Restart( void ) {
}
-void Sys_SendKeyEvents( void ) {
-}
diff --git a/MP/code/null/null_main.c b/MP/code/null/null_main.c
index 4043eb9..a818322 100644
--- a/MP/code/null/null_main.c
+++ b/MP/code/null/null_main.c
@@ -19,7 +19,7 @@ along with Quake III Arena source code; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
-// sys_null.h -- null system driver to aid porting efforts
+// null_main.c -- null system driver to aid porting efforts
#include <errno.h>
#include <stdio.h>
@@ -30,26 +30,6 @@ int sys_curtime;
//===================================================================
-void Sys_BeginStreamedFile( FILE *f, int readAhead ) {
-}
-
-void Sys_EndStreamedFile( FILE *f ) {
-}
-
-int Sys_StreamedRead( void *buffer, int size, int count, FILE *f ) {
- return fread( buffer, size, count, f );
-}
-
-void Sys_StreamSeek( FILE *f, int offset, int origin ) {
- fseek( f, offset, origin );
-}
-
-
-//===================================================================
-
-
-void Sys_mkdir ( const char *path ) {
-}
void Sys_Error (char *error, ...) {
va_list argptr;
@@ -67,13 +47,6 @@ void Sys_Quit (void) {
exit (0);
}
-void Sys_UnloadGame (void) {
-}
-
-void *Sys_GetGameAPI (void *parms) {
- return NULL;
-}
-
char *Sys_GetClipboardData( void ) {
return NULL;
}
@@ -89,26 +62,9 @@ FILE *Sys_FOpen(const char *ospath, const char *mode) {
void Sys_Mkdir (char *path) {
}
-char *Sys_FindFirst (char *path, unsigned musthave, unsigned canthave) {
- return NULL;
-}
-
-char *Sys_FindNext (unsigned musthave, unsigned canthave) {
- return NULL;
-}
-
-void Sys_FindClose (void) {
-}
-
void Sys_Init (void) {
}
-
-void Sys_EarlyOutput( char *string ) {
- printf( "%s", string );
-}
-
-
void main (int argc, char **argv) {
Com_Init (argc, argv);
@@ -117,4 +73,3 @@ void main (int argc, char **argv) {
}
}
-
diff --git a/SP/code/null/null_input.c b/SP/code/null/null_input.c
index 345fea7..7b0e920 100644
--- a/SP/code/null/null_input.c
+++ b/SP/code/null/null_input.c
@@ -38,5 +38,3 @@ void IN_Shutdown( void ) {
void IN_Restart( void ) {
}
-void Sys_SendKeyEvents( void ) {
-}
diff --git a/SP/code/null/null_main.c b/SP/code/null/null_main.c
index 4043eb9..a818322 100644
--- a/SP/code/null/null_main.c
+++ b/SP/code/null/null_main.c
@@ -19,7 +19,7 @@ along with Quake III Arena source code; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
===========================================================================
*/
-// sys_null.h -- null system driver to aid porting efforts
+// null_main.c -- null system driver to aid porting efforts
#include <errno.h>
#include <stdio.h>
@@ -30,26 +30,6 @@ int sys_curtime;
//===================================================================
-void Sys_BeginStreamedFile( FILE *f, int readAhead ) {
-}
-
-void Sys_EndStreamedFile( FILE *f ) {
-}
-
-int Sys_StreamedRead( void *buffer, int size, int count, FILE *f ) {
- return fread( buffer, size, count, f );
-}
-
-void Sys_StreamSeek( FILE *f, int offset, int origin ) {
- fseek( f, offset, origin );
-}
-
-
-//===================================================================
-
-
-void Sys_mkdir ( const char *path ) {
-}
void Sys_Error (char *error, ...) {
va_list argptr;
@@ -67,13 +47,6 @@ void Sys_Quit (void) {
exit (0);
}
-void Sys_UnloadGame (void) {
-}
-
-void *Sys_GetGameAPI (void *parms) {
- return NULL;
-}
-
char *Sys_GetClipboardData( void ) {
return NULL;
}
@@ -89,26 +62,9 @@ FILE *Sys_FOpen(const char *ospath, const char *mode) {
void Sys_Mkdir (char *path) {
}
-char *Sys_FindFirst (char *path, unsigned musthave, unsigned canthave) {
- return NULL;
-}
-
-char *Sys_FindNext (unsigned musthave, unsigned canthave) {
- return NULL;
-}
-
-void Sys_FindClose (void) {
-}
-
void Sys_Init (void) {
}
-
-void Sys_EarlyOutput( char *string ) {
- printf( "%s", string );
-}
-
-
void main (int argc, char **argv) {
Com_Init (argc, argv);
@@ -117,4 +73,3 @@ void main (int argc, char **argv) {
}
}
-
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/iortcw.git
More information about the Pkg-games-commits
mailing list