home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / RiscOS / APP / DEVS / LIB / LOADER.ZIP / Loader / h / WimpError < prev    next >
Text File  |  1997-12-13  |  394b  |  24 lines

  1.  
  2. //-----------------------------------
  3. //            WimpError.h
  4. //-----------------------------------
  5.  
  6. // GCC does'nt support C++ exception (throw, catch and try)
  7.  
  8. #ifndef WimpError_H
  9. #define WimpError_H
  10.  
  11. #include "os.h"
  12. #include "trap.h"
  13.  
  14. void throw (char *);
  15. void throw (os_error *);
  16. void Open_WindowCommand(char *);
  17. void Open_WindowCommand();
  18. void Close_WindowCommand(int = 0); 
  19.  
  20. #endif
  21.  
  22.  
  23.  
  24.