0845d50a74
Files correlati : Ricompilazione Demo : [ ] Commento : Aggiunto supporto per protezione record in cancellazione Corrette TAutoken_string in modo da supportare nuovamente il PIPE inglese git-svn-id: svn://10.65.10.50/trunk@12204 c028cbd2-c16b-5b4b-a496-9718f37d4682
24 lines
577 B
C
Executable File
24 lines
577 B
C
Executable File
#ifndef __POSTMAN_H
|
|
#define __POSTMAN_H
|
|
|
|
#ifndef __RELATION_H
|
|
#include <relation.h>
|
|
#endif
|
|
|
|
// Mail management
|
|
bool can_dispatch_transaction(const TRectype& rec);
|
|
bool dispatch_transaction(const TRectype& rec, const TFilename& ini);
|
|
|
|
// Permission management
|
|
const char* get_user_filter(const char* flt);
|
|
const char* get_user_read_filter();
|
|
const char* get_user_write_filter();
|
|
|
|
bool user_can_read(const TRelation* rel);
|
|
bool user_can_write(const TRelation* rel);
|
|
bool user_can_delete(const TRelation* rel);
|
|
bool user_can_do(const char* azione, const TRelation* rel);
|
|
|
|
#endif
|
|
|