Generates a cfile error
| 78 | |
| 79 | // Generates a cfile error |
| 80 | void ThrowCFileError(int type, CFILE *file, const char *msg) { |
| 81 | cfe.read_write = type; |
| 82 | cfe.msg = msg; |
| 83 | cfe.file = file; |
| 84 | throw &cfe; |
| 85 | } |
| 86 | |
| 87 | static void cf_Close(); |
| 88 |
no outgoing calls
no test coverage detected