home *** CD-ROM | disk | FTP | other *** search
- /*
- * riscos.h
- * Copyright © 1992 Niklas Röjemo
- */
-
- #ifndef _riscos_h
- #define _riscos_h
-
- #ifdef UNIX
- #define CanonicalisePath(x) (x)
- #define toriscos(f,a,b) (f)
- #else
-
- #include "os.h"
-
- char *toriscos(char *name, char *oldsuffixes, char newsuffix);
-
-
-
-
- int OSCanonicalisePath(char *path,
- char *buffer, int bufferSize,
- char *systemVar, char *defaultPath);
-
- char *CanonicalisePath(char *path);
-
- #define ThrowbackInfo -1
- #define ThrowbackWarning 0
- #define ThrowbackError 1
- #define ThrowbackSeriousError 2
-
- os_error *ThrowbackStart(void);
- os_error *ThrowbackSendStart(char *filename);
- os_error *ThrowbackSendError(int level,int lineno,char *error);
- os_error *ThrowbackEnd(void);
-
- #endif
- #endif
-