/ Data Base close routine for DOS access method. */ /
| 387 | /* Data Base close routine for DOS access method. */ |
| 388 | /***********************************************************************/ |
| 389 | void GZFAM::CloseTableFile(PGLOBAL, bool) |
| 390 | { |
| 391 | int rc = gzclose(Zfile); |
| 392 | |
| 393 | if (trace(1)) |
| 394 | htrc("GZ CloseDB: closing %s rc=%d\n", To_File, rc); |
| 395 | |
| 396 | Zfile = NULL; // So we can know whether table is open |
| 397 | //To_Fb->Count = 0; // Avoid double closing by PlugCloseAll |
| 398 | } // end of CloseTableFile |
| 399 | |
| 400 | /***********************************************************************/ |
| 401 | /* Rewind routine for GZ access method. */ |
nothing calls this directly
no test coverage detected