| 467 | |
| 468 | |
| 469 | void EXT_open(Database* dbb, ExternalFile* file) |
| 470 | { |
| 471 | /************************************** |
| 472 | * |
| 473 | * E X T _ o p e n |
| 474 | * |
| 475 | ************************************** |
| 476 | * |
| 477 | * Functional description |
| 478 | * Open a record stream for an external file. |
| 479 | * |
| 480 | **************************************/ |
| 481 | if (!file->ext_ifi) { |
| 482 | ext_fopen(dbb, file); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | |
| 487 | void EXT_store(thread_db* tdbb, record_param* rpb) |
no test coverage detected