diff options
Diffstat (limited to 'MySpace/proto.h')
-rw-r--r-- | MySpace/proto.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MySpace/proto.h b/MySpace/proto.h index d45c485..008c9f5 100644 --- a/MySpace/proto.h +++ b/MySpace/proto.h @@ -1,6 +1,12 @@ #ifndef _PROTO_INC
#define _PROTO_INC
+typedef struct user {
+ int uin;
+ char *email;
+ char *username;
+} UserType;
+
void RegisterProto();
void CreateProtoServices();
void DeinitProto();
|