Subversion Repositories RepoView

Rev

Rev 5 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 7
Line 1... Line 1...
1
/* $Id: rv_auth.h 5 2024-08-20 22:43:56Z nishi $ */
1
/* $Id: rv_auth.h 7 2024-08-21 01:12:44Z nishi $ */
2
 
2
 
3
#ifndef __RV_AUTH_H__
3
#ifndef __RV_AUTH_H__
4
#define __RV_AUTH_H__
4
#define __RV_AUTH_H__
5
 
5
 
6
#include <stdbool.h>
6
#include <stdbool.h>
7
 
7
 
8
char* rv_logged_in(void);
8
char* rv_logged_in(void);
9
void rv_free_auth(void);
9
void rv_free_auth(void);
10
void rv_init_auth(void);
10
void rv_init_auth(void);
11
void rv_save_login(const char* username);
11
void rv_save_login(const char* username);
-
 
12
void rv_logout(void);
12
 
13
 
13
#endif
14
#endif