| 2542 | |
| 2543 | |
| 2544 | int API_ROUTINE BLOB_text_dump(ISC_QUAD* blob_id, |
| 2545 | FB_API_HANDLE database, |
| 2546 | FB_API_HANDLE transaction, |
| 2547 | const SCHAR* file_name) |
| 2548 | { |
| 2549 | /************************************** |
| 2550 | * |
| 2551 | * B L O B _ t e x t _ d u m p |
| 2552 | * |
| 2553 | ************************************** |
| 2554 | * |
| 2555 | * Functional description |
| 2556 | * Dump a blob into a file. |
| 2557 | * This call does CR/LF translation on NT. |
| 2558 | * |
| 2559 | **************************************/ |
| 2560 | return any_text_dump(blob_id, database, transaction, file_name, FB_TRUE); |
| 2561 | } |
| 2562 | |
| 2563 | |
| 2564 | int API_ROUTINE BLOB_dump(ISC_QUAD* blob_id, |
nothing calls this directly
no test coverage detected