summaryrefslogtreecommitdiff
path: root/app/bin/fileio.h
diff options
context:
space:
mode:
Diffstat (limited to 'app/bin/fileio.h')
-rw-r--r--app/bin/fileio.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/app/bin/fileio.h b/app/bin/fileio.h
index 0ea80af..edd8cff 100644
--- a/app/bin/fileio.h
+++ b/app/bin/fileio.h
@@ -42,9 +42,6 @@ extern const char * libDir;
extern wBool_t bReadOnly;
extern wBool_t bExample;
-// Processing an input file, objects may be incomplete so avoid some ops (MapRedraw)
-extern wBool_t bInReadTracks;
-
#define PARAM_CUSTOM (-2)
#define PARAM_LAYOUT (-3)
extern int curParamFileIndex;
@@ -83,7 +80,6 @@ typedef struct {
extern dynArr_t paramProc_da;
#define paramProc(N) DYNARR_N( paramProc_t, paramProc_da, N )
-void Stripcr( char * );
char * GetNextLine( void );
#define END_TRK_FILE "END$TRACKS"
@@ -93,7 +89,7 @@ char * GetNextLine( void );
#define END_MESSAGE "END$MESSAGE"
wBool_t IsEND( char * sEnd );
-BOOL_T GetArgs( char *, char *, ... );
+BOOL_T GetArgs( char *, const char *, ... );
char * ReadMultilineText();
BOOL_T ParseRoomSize( char *, coOrd * );
int InputError( char *, BOOL_T, ... );
@@ -122,7 +118,8 @@ void CleanupCheckpointFiles( void );
void CleanupTempArchive( void );
int ExistsCheckpoint( void );
int LoadCheckpoint( BOOL_T );
-void DoImport( void * typeVP );
+void DoImportObjects( void * typeVP );
+void DoImportModule( void * typeVP );
void DoExport( void * unused );
void DoExportDXF( void * unused );
#if XTRKCAD_CREATE_SVG
@@ -154,6 +151,7 @@ BOOL_T MacroInit( void );
int Copyfile( const char * fn1, const char * fn2);
void SetCLocale();
void SetUserLocale();
+void LocaleInit();
// Parameter file search
void DoSearchParams(void * unused);