Implemented AUTOAUTH
[tpg/opendispense2.git] / server / src / cokebank.c
1 /*
2  * OpenDispense 2 
3  * UCC (University [of WA] Computer Club) Electronic Accounting System
4  *
5  * cokebank.c - Coke-Bank management
6  *
7  * This file is licenced under the 3-clause BSD Licence. See the file COPYING
8  * for full details.
9  */
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include "common.h"
13
14 // === CODE ===
15 int AlterBalance(int User, int Delta)
16 {
17         return 0;
18 }
19
20 /**
21  * \brief Get the balance of the passed user
22  */
23 int GetBalance(int User)
24 {
25         return 0;
26 }
27
28 /**
29  * \brief Return the name the passed user
30  */
31 char *GetUserName(int User)
32 {
33         return NULL;
34 }
35
36 /**
37  * \brief Get the User ID of the named user
38  */
39 int GetUserID(const char *Username)
40 {
41         return 0;
42 }
43

UCC git Repository :: git.ucc.asn.au