Subversion Repositories mdb

Rev

Rev 7 | Rev 9 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7 Rev 8
Line 14... Line 14...
14
 * from Andreas Theofilu.
14
 * from Andreas Theofilu.
15
 */
15
 */
16
#ifndef __USER_H__
16
#ifndef __USER_H__
17
#define __USER_H__
17
#define __USER_H__
18
 
18
 
19
struct ST_USERS
19
typedef struct
20
{
20
{
21
	int id;
21
	int id;
22
	char uname[64];
22
	char uname[64];
23
	char playlist[64];
23
	char playlist[64];
24
	ST_USERS *next;
24
	void *next;
25
};
25
}USERS;
26
 
26
 
-
 
27
extern USERS *userchain;
27
int createUser(int s1, char *user, char *playlist);
28
int createUser(int s1, char *user, char *playlist);
-
 
29
int selectUser (int s1, char *user);
-
 
30
void deleteUser();
-
 
31
USERS *findPlaylist(char *playlist);
28
 
32
 
29
#endif
33
#endif