view lock.h @ 25:ab6cf19be6d3 noffle

[svn] INN needs a MODE READER before it will permit POST
author enz
date Sat, 29 Apr 2000 14:37:59 +0100
parents 04124a4423d4
children
line wrap: on
line source

/*
  lock.h

  Opening/Closing of the various databases: article overview database,
  articla database, groups database, outgoing articles database, requests
  database. Handles global lock.

  $Id: lock.h 3 2000-01-04 11:35:42Z enz $
*/

#ifndef LOCK_H
#define LOCK_H

#include "common.h"

/* Open all databases and set global lock. */
Bool
Lock_openDatabases( void );

/* Close all databases and release global lock. */
void
Lock_closeDatabases( void );

#endif