Update of /cvsroot/slashmud/slashmudx/plugins/Gate
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv1829
Modified Files:
gate.c
Log Message:
More gate updates.
Index: gate.c
===================================================================
RCS file: /cvsroot/slashmud/slashmudx/plugins/Gate/gate.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** gate.c 3 May 2008 02:48:02 -0000 1.37
--- gate.c 3 May 2008 15:53:14 -0000 1.38
***************
*** 39,49 ****
extern "C"
{
! #endif /* __cplusplus */
! void plugin_main(void* instance_data, unsigned int event_code, unsigned int event_ref);
#ifdef __cplusplus
}
! #endif /* __cplusplus */
[...1339 lines suppressed...]
ListPtr mySaveData = pi_create_save_list(instance_data);
--- 1459,1463 ----
/* from inside the game. */
static void
! pi_agent_room_stat(LivingPtr living, const char *what, InstanceDataPtr instance_data)
{
ListPtr mySaveData = pi_create_save_list(instance_data);
***************
*** 1493,1497 ****
for (index = 1; index <= count; index++)
{
! const char* line = kg_list_retrieve(mySaveData, index);
smapi_catch_tell((BasePtr) living, (BasePtr) living, line);
--- 1467,1471 ----
for (index = 1; index <= count; index++)
{
! const char *line = kg_list_retrieve(mySaveData, index);
smapi_catch_tell((BasePtr) living, (BasePtr) living, line);
|