Initial commit

This commit is contained in:
2025-11-17 10:28:09 +01:00
parent 7bff81691f
commit 6ee36e26be
391 changed files with 110253 additions and 0 deletions

43
application/target/user.h Normal file
View 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