Difference for server/plugins.c from version 1.71 to 1.72


version 1.71 version 1.72
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_plugins_c =   * static char *rcsid_plugins_c =
  *   "$Id: plugins.c,v 1.71 2006/05/05 08:52:44 ryo_saeba Exp $";   *   "$Id: plugins.c,v 1.72 2006/05/20 15:47:48 ryo_saeba Exp $";
  */   */
   
 /*****************************************************************************/  /*****************************************************************************/
Line 43
 
Line 43
 #include <sproto.h>  #include <sproto.h>
 #endif  #endif
   
 #define NR_OF_HOOKS 75  #define NR_OF_HOOKS 76
   
 static const hook_entry plug_hooks[NR_OF_HOOKS] =  static const hook_entry plug_hooks[NR_OF_HOOKS] =
 {  {
Line 122
 
Line 122
     {cfapi_party_get_property,      72, "cfapi_party_get_property"},      {cfapi_party_get_property,      72, "cfapi_party_get_property"},
     {cfapi_region_get_property,     73, "cfapi_region_get_property"},      {cfapi_region_get_property,     73, "cfapi_region_get_property"},
     {cfapi_player_can_pay,          74, "cfapi_player_can_pay"},      {cfapi_player_can_pay,          74, "cfapi_player_can_pay"},
       {cfapi_log,                     75, "cfapi_log"},
 };  };
 int plugin_number = 0;  int plugin_number = 0;
 crossfire_plugin* plugins_list = NULL;  crossfire_plugin* plugins_list = NULL;
Line 787
 
Line 788
     return NULL;      return NULL;
 }  }
   
   /* Logging hook */
   void* cfapi_log(int* type, ...)
   {
       va_list args;
       LogLevel logLevel;
       const char* message;
   
       va_start(args, type);
       logLevel = va_arg(args, LogLevel);
       message = va_arg(args, const char*);
       LOG(logLevel, message);
       va_end(args);
   
       return NULL;
   }
   
 /* MAP RELATED HOOKS */  /* MAP RELATED HOOKS */
   


Legend:
line(s) removed in v.1.71 
line(s) changed
 line(s) added in v.1.72

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:42