version 1.36 | | version 1.37 |
---|
| | |
/* | | /* |
* static char *rcsid_plugins_c = | | * static char *rcsid_plugins_c = |
* "$Id: plugins.c,v 1.36 2005/05/20 19:28:02 akirschbaum Exp $"; | | * "$Id: plugins.c,v 1.37 2005/07/15 13:51:52 ryo_saeba Exp $"; |
*/ | | */ |
| | |
/*****************************************************************************/ | | /*****************************************************************************/ |
| | |
} | | } |
| | |
/*****************************************************************************/ | | /*****************************************************************************/ |
| | /* check_trigger wrapper. */ |
| | /*****************************************************************************/ |
| | /* 0 - item to check */ |
| | /* 1 - cause */ |
| | /*****************************************************************************/ |
| | CFParm* CFWCFCheckTrigger(CFParm* PParm) |
| | { |
| | check_trigger( ( object* )( PParm->Value[ 0 ] ), ( object* )( PParm->Value[ 1 ] ) ); |
| | return NULL; |
| | }; |
| | |
| | /*****************************************************************************/ |
/* The following is not really a wrapper like the others are. */ | | /* The following is not really a wrapper like the others are. */ |
/* It is in fact used to allow the plugin to request the global events it */ | | /* It is in fact used to allow the plugin to request the global events it */ |
/* wants to be aware of. All events can be seen as global; on the contrary, */ | | /* wants to be aware of. All events can be seen as global; on the contrary, */ |