Difference for plugins/common/plugin_common.c from version 1.17 to 1.18


version 1.17 version 1.18
Line 43
 
Line 43
 static f_plug_api cfapiSystem_find_animation = NULL;  static f_plug_api cfapiSystem_find_animation = NULL;
 static f_plug_api cfapiSystem_log = NULL;  static f_plug_api cfapiSystem_log = NULL;
 static f_plug_api cfapiSystem_get_time = NULL;  static f_plug_api cfapiSystem_get_time = NULL;
   static f_plug_api cfapiSystem_timer_create = NULL;
   static f_plug_api cfapiSystem_timer_destroy = NULL;
   
 static f_plug_api cfapiMap_create_path = NULL;  static f_plug_api cfapiMap_create_path = NULL;
   
Line 188
 
Line 190
     GET_HOOK( cfapiPlayer_can_pay, "cfapi_player_can_pay", z );      GET_HOOK( cfapiPlayer_can_pay, "cfapi_player_can_pay", z );
     GET_HOOK( cfapiSystem_log, "cfapi_log", z );      GET_HOOK( cfapiSystem_log, "cfapi_log", z );
     GET_HOOK( cfapiSystem_get_time, "cfapi_system_get_time", z );      GET_HOOK( cfapiSystem_get_time, "cfapi_system_get_time", z );
       GET_HOOK( cfapiSystem_timer_create, "cfapi_system_timer_create", z );
       GET_HOOK( cfapiSystem_timer_destroy, "cfapi_system_timer_destroy", z );
     return 1;      return 1;
 }  }
   
Line 761
 
Line 765
     cfapiSystem_get_time(&val, tod);      cfapiSystem_get_time(&val, tod);
 }  }
   
   int cf_timer_create(object* ob, long delay, int mode)
   {
       int val;
       return *( int* )cfapiSystem_timer_create(&val, ob, delay, mode);
   }
   
   int cf_timer_destroy(int id)
   {
       int val;
       return *( int* )cfapiSystem_timer_destroy(&val, id);
   }
   
 char* cf_object_get_key(object* op, char* keyname)  char* cf_object_get_key(object* op, char* keyname)
 {  {
     int val;      int val;


Legend:
line(s) removed in v.1.17 
line(s) changed
 line(s) added in v.1.18

File made using version 1.98 of cvs2html by leaf at 2011-07-21 16:57