home *** CD-ROM | disk | FTP | other *** search
- #include <WStr.h>
- #include <stdio.h>
- #include <conio.h>
- #include <stdlib.h>
-
- // what goes in here will change from application to application
-
- void FatalError(const char* Str)
- {
- puts("\n");
- cputs("Fatal Error Encountered: \"");
- cputs(Str);
- cputs("\"");
- puts("");
- exit(-1);
- }
-