view power.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 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);
}