user.h (raw)
1 2 3 4 5 6 7 8 |
typedef struct Cart Cart; typedef struct Realm Realm; typedef struct UserInfo { char name[32]; uvlong password; Cart* cart; Realm* realm; } UserInfo; |
user.h (raw)
1 2 3 4 5 6 7 8 |
typedef struct Cart Cart; typedef struct Realm Realm; typedef struct UserInfo { char name[32]; uvlong password; Cart* cart; Realm* realm; } UserInfo; |