Mercurial > hg > audiodb
view close.cpp @ 651:5b2c0d9bc63d
Broken implementation of mkstemp() for WIN32 (no-cygwin)
Since the only user is the SOAP server, and since I would strongly like
to see the SOAP server either removed completely or else written to call
the API rather than a fake-command-line-emulation, I'm not too worried
about the brokenness. YMMV.
author | mas01cr |
---|---|
date | Wed, 14 Oct 2009 12:12:39 +0000 |
parents | 4eedc18634f5 |
children | b1723ae7675e |
line wrap: on
line source
extern "C" { #include "audioDB_API.h" } #include "audioDB-internals.h" void audiodb_close(adb_t *adb) { free(adb->path); free(adb->header); delete adb->keys; delete adb->keymap; delete adb->track_lengths; delete adb->track_offsets; if(adb->cached_lsh) { delete adb->cached_lsh; } divest_lock(adb->fd); close(adb->fd); free(adb); }