diff options
| author | David Sommerseth <dazo@users.sourceforge.net> | 2008-12-05 16:56:29 +0100 |
|---|---|---|
| committer | David Sommerseth <dazo@users.sourceforge.net> | 2008-12-05 16:56:29 +0100 |
| commit | d0e5f69a3a84ee6ef7e774df7a5fc509620b42f8 (patch) | |
| tree | 3b2975dd731a831ed28b1f9d222b11f3e46cb6c2 /database/sqlite | |
| parent | 46057a46c1d920e456179b6c8ef51c9347b0dbaf (diff) | |
| download | eurephia-d0e5f69a3a84ee6ef7e774df7a5fc509620b42f8.tar.gz eurephia-d0e5f69a3a84ee6ef7e774df7a5fc509620b42f8.tar.xz eurephia-d0e5f69a3a84ee6ef7e774df7a5fc509620b42f8.zip | |
Changed admin functions to be prefixed with eDBadmin*, to unify the function name schema
Diffstat (limited to 'database/sqlite')
| -rw-r--r-- | database/sqlite/administration.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/database/sqlite/administration.c b/database/sqlite/administration.c index 7e0e943..982608e 100644 --- a/database/sqlite/administration.c +++ b/database/sqlite/administration.c @@ -326,48 +326,48 @@ int eDBadminConfigDelete(eurephiaCTX *ctx, const char *key) { return 1; } -eurephiaUSERLIST *eDBgetUserList(eurephiaCTX *ctx, const int sortkey) { +eurephiaUSERLIST *eDBadminGetUserList(eurephiaCTX *ctx, const int sortkey) { return NULL; } -eurephiaUSERINFO *eDBgetUserInfo(eurephiaCTX *ctx, eurephiaUSERINFO *srchkey) { +eurephiaUSERINFO *eDBadminGetUserInfo(eurephiaCTX *ctx, eurephiaUSERINFO *srchkey) { return NULL; } -int eDBaddUser(eurephiaCTX *ctx, eurephiaUSERINFO *usrinf) { +int eDBadminAddUser(eurephiaCTX *ctx, eurephiaUSERINFO *usrinf) { return 0; } -int eDBupdateUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) { +int eDBadminUpdateUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) { return 0; } -int eDBdeleteUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) { +int eDBadminDeleteUser(eurephiaCTX *ctx, const int uid, eurephiaUSERINFO *usrinf) { return 0; } -eurephiaCERTLIST *eDBgetCertificateList(eurephiaCTX *ctx, const int sortkey) { +eurephiaCERTLIST *eDBadminGetCertificateList(eurephiaCTX *ctx, const int sortkey) { return NULL; } -eurephiaCERTINFO *eDBgetCertificateInfo(eurephiaCTX *ctx, eurephiaCERTINFO *srchkey) { +eurephiaCERTINFO *eDBadminGetCertificateInfo(eurephiaCTX *ctx, eurephiaCERTINFO *srchkey) { return NULL; } -int eDBaddCertificate(eurephiaCTX *ctx, eurephiaCERTINFO *crtinf) { +int eDBadminAddCertificate(eurephiaCTX *ctx, eurephiaCERTINFO *crtinf) { return 0; } -int eDBdeleteCertificate(eurephiaCTX *ctx, const int uid, eurephiaCERTINFO *crtinf) { +int eDBadminDeleteCertificate(eurephiaCTX *ctx, const int uid, eurephiaCERTINFO *crtinf) { return 0; } -eurephiaLOGLIST *eDBgetLastlog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) { +eurephiaLOGLIST *eDBadminGetLastlog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) { return NULL; }; -eurephiaLOGLIST *eDBgetAttemptsLog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) { +eurephiaLOGLIST *eDBadminGetAttemptsLog(eurephiaCTX *ctx, eurephiaUSERINFO *usersrch, eurephiaCERTINFO *certsrch) { return NULL; }; |
