| 387 | } |
| 388 | |
| 389 | boolean |
| 390 | rsrc_dlb_fopen(dlb *dp, const char *name, const char *mode) |
| 391 | { |
| 392 | #if defined(__SC__) || defined(__MRC__) |
| 393 | #pragma unused(mode) |
| 394 | #endif |
| 395 | Str255 pname; |
| 396 | |
| 397 | C2P(name, pname); |
| 398 | dp->fd = OpenHandleFile(pname, 'File'); /* automatically read-only */ |
| 399 | return dp->fd >= 0; |
| 400 | } |
| 401 | |
| 402 | int |
| 403 | rsrc_dlb_fclose(dlb *dp) |
nothing calls this directly
no test coverage detected