Initial import of new version :]
This commit is contained in:
28
dlls/nvault/IVault.h
Executable file
28
dlls/nvault/IVault.h
Executable file
@ -0,0 +1,28 @@
|
||||
#ifndef _INCLUDE_IVAULT_H
|
||||
#define _INCLUDE_IVAULT_H
|
||||
|
||||
#include <time.h>
|
||||
|
||||
class IVault
|
||||
{
|
||||
public:
|
||||
virtual ~IVault() { }
|
||||
public:
|
||||
virtual bool GetValue(const char *key, time_t &stamp, char buffer[], size_t len) =0;
|
||||
virtual void SetValue(const char *key, const char *val) =0;
|
||||
virtual void SetValue(const char *key, const char *val, time_t stamp) =0;
|
||||
virtual size_t Prune(time_t start, time_t end) =0;
|
||||
virtual void Clear() =0;
|
||||
virtual void Remove(const char *key) =0;
|
||||
virtual size_t Items() =0;
|
||||
};
|
||||
|
||||
class IVaultMngr
|
||||
{
|
||||
public:
|
||||
virtual IVault *OpenVault(const char *name) =0;
|
||||
};
|
||||
|
||||
typedef IVaultMngr *(*GETVAULTMNGR_FUNC)();
|
||||
|
||||
#endif //_INCLUDE_IVAULT_H
|
Reference in New Issue
Block a user