Subversion Repositories pentevo

Rev

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

  1. #ifndef _TOOLUTILS_H
  2. #define _TOOLUTILS_H
  3. /* toolutils.c */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS-Portierung                                                             */
  8. /*                                                                           */
  9. /*****************************************************************************/
  10.  
  11. #include <stdio.h>
  12. #include "fileformat.h"
  13.  
  14. typedef struct
  15. {
  16.   LargeInt Addr;
  17.   LongInt Type;
  18.   char *Name;
  19. } TRelocEntry, *PRelocEntry;
  20.  
  21. typedef struct
  22. {
  23.   char *Name;
  24.   LargeInt Value;
  25.   LongInt Flags;
  26. } TExportEntry, *PExportEntry;
  27.  
  28. typedef struct
  29. {
  30.   LongInt RelocCount, ExportCount;
  31.   PRelocEntry RelocEntries;
  32.   PExportEntry ExportEntries;
  33.   char *Strings;
  34. } TRelocInfo, *PRelocInfo;
  35.  
  36. extern Word FileID;
  37.  
  38. extern const char *OutName;
  39.  
  40. extern void WrCopyRight(const char *Msg);
  41.  
  42. extern void DelSuffix(char *Name);
  43.  
  44. extern void AddSuffix(char *Name, unsigned NameSize, const char *Suff);
  45.  
  46. extern void FormatError(const char *Name, const char *Detail);
  47.  
  48. extern void ChkIO(const char *Name);
  49. extern void chk_wr_read_error(const char *p_name);
  50. extern int chkio_fprintf(FILE *p_file, const char *p_name, const char *p_fmt, ...)
  51. #ifdef __GNUC__
  52.            __attribute__ ((format (printf, 3, 4)))
  53. #endif
  54.            ;
  55. extern int chkio_printf(const char *p_name, const char *p_fmt, ...)
  56. #ifdef __GNUC__
  57.            __attribute__ ((format (printf, 2, 3)))
  58. #endif
  59.            ;
  60.  
  61. extern Word Granularity(Byte Header, Byte Segment);
  62.  
  63. extern void ReadRecordHeader(Byte *Header, Byte *Target, Byte* Segment,
  64.                              Byte *Gran, const char *Name, FILE *f);
  65.  
  66. extern void WriteRecordHeader(Byte *Header, Byte *Target, Byte* Segment,
  67.                               Byte *Gran, const char *Name, FILE *f);
  68.  
  69. extern void SkipRecord(Byte Header, const char *Name, FILE *f);
  70.  
  71. extern PRelocInfo ReadRelocInfo(FILE *f);
  72.  
  73. extern void DestroyRelocInfo(PRelocInfo PInfo);
  74.  
  75. extern as_cmd_result_t CMD_FilterList(Boolean Negate, const char *Arg);
  76.  
  77. extern as_cmd_result_t CMD_Range(LongWord *pStart, LongWord *pStop,
  78.                            Boolean *pStartAuto, Boolean *pStopAuto,
  79.                            const char *Arg);
  80.  
  81. extern Boolean FilterOK(Byte Header);
  82.  
  83. extern Boolean RemoveOffset(char *Name, LongWord *Offset);
  84.  
  85.  
  86. extern void EraseFile(const char *FileName, LongWord Offset);
  87.  
  88.  
  89. extern Boolean AddressWildcard(const char *addr);
  90.  
  91.  
  92. extern void toolutils_init(const char *ProgPath);
  93.  
  94. #endif /* _TOOLUTILS_H */
  95.