1 /*****************************************
2   xjump version 2
3 
4   record.h   �إå�( �쥳���ɴ�Ϣ )
5 
6   (C) July 16, 1997  ROYALPANDA
7 *****************************************/
8 
9 
10 typedef struct {
11 
12   int score;       /* ���� */
13   int uid;         /* �桼����ID */
14   char name[32];   /* ̾�� */
15   int rank;        /* ��� */
16 
17 } record_t;
18 
19 
20 extern record_t Record[];
21 extern int Record_entry;
22 
23 extern char *Myname;
24 
25 void init_record( void );
26 void save_record( int score );
27