Initial commit
This commit is contained in:
43
application/target/user.h
Normal file
43
application/target/user.h
Normal file
@@ -0,0 +1,43 @@
|
||||
#ifndef _user
|
||||
|
||||
#define _user
|
||||
|
||||
|
||||
// Macros
|
||||
|
||||
|
||||
|
||||
#include "stdlib.h"
|
||||
|
||||
extern char * __ClassNames[];
|
||||
|
||||
|
||||
// Includes
|
||||
|
||||
#include <array.h>
|
||||
|
||||
|
||||
typedef struct user{
|
||||
|
||||
unsigned short __classIndex;
|
||||
|
||||
char * username;
|
||||
|
||||
int id;
|
||||
|
||||
int userlevel;
|
||||
|
||||
char * hash;
|
||||
|
||||
struct array * addresses;
|
||||
|
||||
|
||||
} user;
|
||||
|
||||
void user_constructor( user * this );
|
||||
|
||||
user user_new( );
|
||||
|
||||
user * user_newPointer( );
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user