diff options
| author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2025-09-20 19:19:41 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2025-09-20 19:19:41 +0200 | 
| commit | 63ec5715054be18ac4db5675e067b41c955d03b9 (patch) | |
| tree | 42bb5764b05bd3bc5bffadb55f4375e6dce8a521 /app/bin/fileio.h | |
| parent | 6c1a798b0302034a7fdcaf93b8f014e2e458c2a0 (diff) | |
| parent | e7d20cf352688bf717a01f4e6d9e6f497c2bea4c (diff) | |
Update upstream source from tag 'upstream/5.3.1Beta2'
Update to upstream version '5.3.1Beta2'
with Debian dir 36e53756d97319b1944d0ea744717abc9326f697
Diffstat (limited to 'app/bin/fileio.h')
| -rw-r--r-- | app/bin/fileio.h | 10 | 
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);  | 
