You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
353 B
17 lines
353 B
#ifndef USER_H_INCLUDED
|
|
#define USER_H_INCLUDED
|
|
|
|
#include<conio.h>
|
|
#include "BOOKUI.h"
|
|
#include "admin.h"
|
|
#define UP 72
|
|
#define DOWN 80
|
|
#define RIGHT 77
|
|
#define LEFT 75
|
|
int admin();//管理员登陆
|
|
int login1(); //选择登陆或注册
|
|
int login2(int); //进行登陆类型选择
|
|
void login3(int); //进行登陆
|
|
|
|
#endif // USER_H_INCLUDED
|