NetBurner 3.5.6
PDF Version
UserAuth.h
1/*NB_REVISION*/
2
3/*NB_COPYRIGHT*/
4
5#ifndef _USER_AUTH_H_
6#define _USER_AUTH_H_
7
9
10int SaveAuthRecordsUserParam(const UserAuthRecord *authRec);
11int LoadAuthRecordsUserParam(UserAuthRecord *authRec);
12int AuthenticateUser(const char *usernamePtr, const char *authPtr, AuthType authType);
13
14AuthResponse ProcessAddNewUser();
15AuthResponse ProcessDeleteUser();
16
17#endif /* _USER_AUTH_H_ */
NetBurner User Authorization Manager.
AuthResponse
Response return codes when checking for the authorization status of a user.
Definition UserAuthManager.h:59
AuthType
The types of authorization requests that are managed. These just indicate what the has value is,...
Definition UserAuthManager.h:44
A stored record of a user's authorization credentials. The value is hashed when saved so it can't be ...
Definition UserAuthManager.h:78