13 lines
129 B
C
13 lines
129 B
C
/* m_users.h */
|
|
|
|
#ifndef _USERS_H
|
|
#define _USERS_H
|
|
|
|
|
|
int CountUsers(void);
|
|
void EditUsers(void);
|
|
void InitUsers(void);
|
|
|
|
#endif
|
|
|