sim: various cleanups (non existent funcs)
This commit is contained in:
parent
67f7db9540
commit
cface55c5b
|
|
@ -46,13 +46,6 @@
|
||||||
#include "utils/styles.h"
|
#include "utils/styles.h"
|
||||||
#include "graphics/graphics.h"
|
#include "graphics/graphics.h"
|
||||||
|
|
||||||
/* Forward declarations */
|
|
||||||
|
|
||||||
extern char *DBPrintUseId();
|
|
||||||
extern int dbcUnconnectFunc();
|
|
||||||
extern void SimInitScxStk();
|
|
||||||
extern void SimPopScx();
|
|
||||||
extern void SimMakePathname();
|
|
||||||
|
|
||||||
static char bestName[256];
|
static char bestName[256];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
/* C99 compat */
|
/* C99 compat */
|
||||||
#include "textio/textio.h"
|
#include "textio/textio.h"
|
||||||
|
|
||||||
static bool InitRsim();
|
static bool InitRsim(const char *hello_msg);
|
||||||
|
|
||||||
#define BUF_SIZE 1024
|
#define BUF_SIZE 1024
|
||||||
#define LINEBUF_SIZE 256
|
#define LINEBUF_SIZE 256
|
||||||
|
|
@ -382,7 +382,7 @@ SimConnectRsim(
|
||||||
*-----------------------------------------------------------------------
|
*-----------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|
||||||
bool
|
static bool
|
||||||
InitRsim(
|
InitRsim(
|
||||||
const char *hello_msg)
|
const char *hello_msg)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -447,7 +447,7 @@ SimSelection(
|
||||||
char *strPtr;
|
char *strPtr;
|
||||||
bool goodReply;
|
bool goodReply;
|
||||||
|
|
||||||
extern void RsimErrorMsg();
|
extern void RsimErrorMsg(void);
|
||||||
|
|
||||||
timeString[0] = 0;
|
timeString[0] = 0;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue