Mercurial > hg > audiodb
view power.cpp @ 592:cfa74bcc1249
Remove uses of mmap() from open.cpp
(These are relatively easy to deal with; just replace them with an
lseek()/read() pair. Of course, now we're destructively modifying the
fd position; I'd have liked to use pread() but, surprise, that's not
available on mingw.)
author | mas01cr |
---|---|
date | Tue, 11 Aug 2009 21:42:29 +0000 |
parents | cc2b97d020b1 |
children |
line wrap: on
line source
extern "C" { #include "audioDB_API.h" } #include "audioDB-internals.h" int audiodb_power(adb_t *adb) { if(!(adb->flags & O_RDWR)) { return 1; } if(adb->header->length > 0) { return 1; } adb->header->flags |= ADB_HEADER_FLAG_POWER; return audiodb_sync_header(adb); }