| 230 | |
| 231 | |
| 232 | bool PIO_expand(const TEXT* file_name, USHORT file_length, TEXT* expanded_name, FB_SIZE_T len_expanded) |
| 233 | { |
| 234 | /************************************** |
| 235 | * |
| 236 | * P I O _ e x p a n d |
| 237 | * |
| 238 | ************************************** |
| 239 | * |
| 240 | * Functional description |
| 241 | * Fully expand a file name. If the file doesn't exist, do something |
| 242 | * intelligent. |
| 243 | * |
| 244 | **************************************/ |
| 245 | |
| 246 | return ISC_expand_filename(file_name, file_length, expanded_name, len_expanded, false); |
| 247 | } |
| 248 | |
| 249 | |
| 250 | void PIO_extend(thread_db* tdbb, jrd_file* main_file, const ULONG extPages, const USHORT pageSize) |
nothing calls this directly
no test coverage detected