home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / as / src / h / riscos < prev    next >
Encoding:
Text File  |  1992-08-28  |  760 b   |  39 lines

  1. /*
  2.  * riscos.h
  3.  * Copyright © 1992 Niklas Röjemo
  4.  */
  5.  
  6. #ifndef _riscos_h
  7. #define _riscos_h
  8.  
  9. #ifdef UNIX
  10. #define CanonicalisePath(x) (x)
  11. #define toriscos(f,a,b)     (f)
  12. #else
  13.  
  14. #include "os.h"
  15.  
  16. char *toriscos(char *name, char *oldsuffixes, char newsuffix);
  17.  
  18.  
  19.  
  20.  
  21. int OSCanonicalisePath(char *path,
  22.                        char *buffer, int bufferSize,
  23.                        char *systemVar, char *defaultPath);
  24.  
  25. char *CanonicalisePath(char *path);
  26.  
  27. #define ThrowbackInfo        -1
  28. #define ThrowbackWarning      0
  29. #define ThrowbackError        1
  30. #define ThrowbackSeriousError 2
  31.  
  32. os_error *ThrowbackStart(void);
  33. os_error *ThrowbackSendStart(char *filename);
  34. os_error *ThrowbackSendError(int level,int lineno,char *error);
  35. os_error *ThrowbackEnd(void);
  36.  
  37. #endif
  38. #endif
  39.