--- deliantra/server/plugins/cfanim/cfanim.c 2006/02/09 02:29:31 1.2 +++ deliantra/server/plugins/cfanim/cfanim.c 2006/02/22 18:53:55 1.3 @@ -438,7 +438,7 @@ ordered_commands=1; } -CFanimationHook* get_command (char* command) +static CFanimationHook *get_command(char *command) { CFanimationHook dummy; dummy.name=command; @@ -449,7 +449,7 @@ sizeof(CFanimationHook), compareAnims); } -CFmovement* parse_animation_block (char* buffer, size_t buffer_size,FILE* fichier, CFanimation* parent) +static CFmovement *parse_animation_block(char *buffer, size_t buffer_size, FILE *fichier, CFanimation *parent) { CFmovement* first=NULL; CFmovement* current=NULL; @@ -591,7 +591,7 @@ /* * return a new animation pointer inserted in the list of animations */ -CFanimation* create_animation(void) +static CFanimation *create_animation(void) { CFanimation* new; CFanimation* current; @@ -832,7 +832,7 @@ fclose (fichier); return 1; } -void animate_one(CFanimation* animation, long int milliseconds) +static void animate_one(CFanimation *animation, long int milliseconds) { CFmovement* current;