Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. /* Header file for dZ80 */
  2.  
  3. #ifndef __MIDZ80__
  4. #define __MIDZ80__
  5.  
  6. #define OMITCONFIGSWITCH        "!"
  7.  
  8. typedef struct
  9. {
  10.         char *Extension;
  11.         WORD FileHeaderSize;
  12.         WORD BaseOffset;
  13. } DISFILE;
  14.  
  15. extern  char    reqLayoutNumberPrefix[D_CUSTOMSTRING_MAXLEN], reqLayoutNumberSuffix[D_CUSTOMSTRING_MAXLEN];
  16. extern  int     disRadix, showVersion;
  17.  
  18. void    ShowVersionInfo(void);
  19. void    ShowUsage(void);
  20. void    ScanFilenameForPresets(DISZ80 *d);
  21. void    ParseFilenames(DISZ80 *d);
  22. void    PrintToErrOut(char *Str);
  23. void    PrintToConsole(char *Str);
  24. int             ParseCmdLine(DISZ80 *d, int startArgc, int argc, char* argv[]);
  25.  
  26. #endif  /* __MIDZ80__ */
  27.