| 1 |
root |
1.1 |
/*****************************************************************************/ |
| 2 |
|
|
/* Crossfire plugin support - (C) 2001 by Yann Chachkoff. */ |
| 3 |
|
|
/* This code is placed under the GPL. */ |
| 4 |
|
|
/*****************************************************************************/ |
| 5 |
|
|
|
| 6 |
|
|
/*****************************************************************************/ |
| 7 |
|
|
/* Headers needed. */ |
| 8 |
|
|
/*****************************************************************************/ |
| 9 |
|
|
|
| 10 |
|
|
#ifndef PLUGIN_H_ |
| 11 |
|
|
#define PLUGIN_H_ |
| 12 |
|
|
|
| 13 |
|
|
/*****************************************************************************/ |
| 14 |
|
|
/* This one does not exist under Win32. */ |
| 15 |
|
|
/*****************************************************************************/ |
| 16 |
|
|
#ifndef WIN32 |
| 17 |
|
|
#include <dlfcn.h> |
| 18 |
|
|
#endif |
| 19 |
|
|
|
| 20 |
|
|
#undef MODULEAPI |
| 21 |
|
|
#ifdef WIN32 |
| 22 |
|
|
#ifdef PYTHON_PLUGIN_EXPORTS |
| 23 |
|
|
#define MODULEAPI __declspec(dllexport) |
| 24 |
|
|
#else |
| 25 |
|
|
#define MODULEAPI __declspec(dllimport) |
| 26 |
|
|
#endif |
| 27 |
|
|
#else |
| 28 |
|
|
#define MODULEAPI |
| 29 |
|
|
#endif |
| 30 |
|
|
|
| 31 |
|
|
#include <global.h> |
| 32 |
|
|
#include <object.h> |
| 33 |
|
|
|
| 34 |
|
|
#ifdef HAVE_TIME_H |
| 35 |
|
|
#include <time.h> |
| 36 |
|
|
#endif |
| 37 |
|
|
#include <../random_maps/random_map.h> |
| 38 |
|
|
#include <../random_maps/rproto.h> |
| 39 |
|
|
|
| 40 |
|
|
|
| 41 |
|
|
/*****************************************************************************/ |
| 42 |
|
|
/* This one does not exist under Win32. */ |
| 43 |
|
|
/*****************************************************************************/ |
| 44 |
|
|
#ifndef WIN32 |
| 45 |
|
|
#include <dirent.h> |
| 46 |
|
|
#endif |
| 47 |
|
|
|
| 48 |
|
|
/*****************************************************************************/ |
| 49 |
|
|
/* Event ID codes. I sorted them to present local events first, but it is */ |
| 50 |
|
|
/* just a 'cosmetic' thing. */ |
| 51 |
|
|
/*****************************************************************************/ |
| 52 |
|
|
/*****************************************************************************/ |
| 53 |
|
|
/* Local events. Those are always linked to a specific object. */ |
| 54 |
|
|
/*****************************************************************************/ |
| 55 |
root |
1.2 |
// how about making this an enum |
| 56 |
root |
1.1 |
#define EVENT_NONE 0 /* No event. This exists only to reserve the "0". */ |
| 57 |
|
|
#define EVENT_APPLY 1 /* Object applied-unapplied. */ |
| 58 |
|
|
#define EVENT_ATTACK 2 /* Monster attacked or Scripted Weapon used. */ |
| 59 |
|
|
#define EVENT_DEATH 3 /* Player or monster dead. */ |
| 60 |
|
|
#define EVENT_DROP 4 /* Object dropped on the floor. */ |
| 61 |
|
|
#define EVENT_PICKUP 5 /* Object picked up. */ |
| 62 |
|
|
#define EVENT_SAY 6 /* Someone speaks. */ |
| 63 |
|
|
#define EVENT_STOP 7 /* Thrown object stopped. */ |
| 64 |
|
|
#define EVENT_TIME 8 /* Triggered each time the object can react/move. */ |
| 65 |
|
|
#define EVENT_THROW 9 /* Object is thrown. */ |
| 66 |
|
|
#define EVENT_TRIGGER 10 /* Button pushed, lever pulled, etc. */ |
| 67 |
|
|
#define EVENT_CLOSE 11 /* Container closed. */ |
| 68 |
|
|
#define EVENT_TIMER 12 /* Timer connected triggered it. */ |
| 69 |
root |
1.2 |
#define EVENT_MOVE 28 /* Monster move */ |
| 70 |
root |
1.1 |
/*****************************************************************************/ |
| 71 |
|
|
/* Global events. Those are never linked to a specific object. */ |
| 72 |
|
|
/*****************************************************************************/ |
| 73 |
|
|
#define EVENT_BORN 13 /* A new character has been created. */ |
| 74 |
|
|
#define EVENT_CLOCK 14 /* Global time event. */ |
| 75 |
|
|
#define EVENT_CRASH 15 /* Triggered when the server crashes. Not recursive*/ |
| 76 |
|
|
#define EVENT_PLAYER_DEATH 16 /* Global Death event */ |
| 77 |
|
|
#define EVENT_GKILL 17 /* Triggered when anything got killed by anyone. */ |
| 78 |
|
|
#define EVENT_LOGIN 18 /* Player login. */ |
| 79 |
|
|
#define EVENT_LOGOUT 19 /* Player logout. */ |
| 80 |
|
|
#define EVENT_MAPENTER 20 /* A player entered a map. */ |
| 81 |
|
|
#define EVENT_MAPLEAVE 21 /* A player left a map. */ |
| 82 |
|
|
#define EVENT_MAPRESET 22 /* A map is resetting. */ |
| 83 |
|
|
#define EVENT_REMOVE 23 /* A Player character has been removed. */ |
| 84 |
|
|
#define EVENT_SHOUT 24 /* A player 'shout' something. */ |
| 85 |
root |
1.2 |
#define EVENT_TELL 25 /* A player 'tell' something. */ |
| 86 |
|
|
#define EVENT_MUZZLE 26 /* A player was Muzzled (no_shout set). */ |
| 87 |
root |
1.1 |
#define EVENT_KICK 27 /* A player was Kicked by a DM */ |
| 88 |
root |
1.2 |
#define EVENT_FREE_OB 29 /* Object destroyed */ |
| 89 |
|
|
/* should add FREE_MAP, FREE_PLAYER */ |
| 90 |
root |
1.1 |
|
| 91 |
root |
1.2 |
#define NR_EVENTS 30 |
| 92 |
root |
1.1 |
|
| 93 |
|
|
#include <stdarg.h> |
| 94 |
|
|
|
| 95 |
|
|
#define CFAPI_NONE 0 |
| 96 |
|
|
#define CFAPI_INT 1 |
| 97 |
|
|
#define CFAPI_LONG 2 |
| 98 |
|
|
#define CFAPI_CHAR 3 |
| 99 |
|
|
#define CFAPI_STRING 4 |
| 100 |
|
|
#define CFAPI_POBJECT 5 |
| 101 |
|
|
#define CFAPI_PMAP 6 |
| 102 |
|
|
#define CFAPI_FLOAT 7 |
| 103 |
|
|
#define CFAPI_DOUBLE 8 |
| 104 |
|
|
#define CFAPI_PARCH 9 |
| 105 |
|
|
#define CFAPI_FUNC 10 |
| 106 |
|
|
#define CFAPI_PPLAYER 11 |
| 107 |
|
|
#define CFAPI_PPARTY 12 |
| 108 |
|
|
#define CFAPI_PREGION 13 |
| 109 |
|
|
|
| 110 |
|
|
typedef void* (*f_plug_api) (int* type, ...); |
| 111 |
|
|
typedef int (*f_plug_postinit) (void); |
| 112 |
|
|
typedef int (*f_plug_init)(const char* iversion, f_plug_api gethooksptr); |
| 113 |
|
|
|
| 114 |
|
|
#ifndef WIN32 |
| 115 |
|
|
#define LIBPTRTYPE void* |
| 116 |
|
|
#else |
| 117 |
|
|
#define LIBPTRTYPE HMODULE |
| 118 |
|
|
#endif |
| 119 |
|
|
|
| 120 |
|
|
typedef struct _crossfire_plugin |
| 121 |
|
|
{ |
| 122 |
|
|
f_plug_api eventfunc; /* Event Handler function */ |
| 123 |
|
|
f_plug_api propfunc; /* Plugin getProperty function */ |
| 124 |
|
|
f_plug_postinit closefunc; /* Plugin Termination function */ |
| 125 |
|
|
LIBPTRTYPE libptr; /* Pointer to the plugin library */ |
| 126 |
|
|
char id[MAX_BUF]; /* Plugin identification string */ |
| 127 |
|
|
char fullname[MAX_BUF]; /* Plugin full name */ |
| 128 |
|
|
f_plug_api gevent[NR_EVENTS]; /* Global events registered */ |
| 129 |
|
|
struct _crossfire_plugin *next; |
| 130 |
|
|
struct _crossfire_plugin *prev; |
| 131 |
|
|
} crossfire_plugin; |
| 132 |
|
|
|
| 133 |
|
|
extern int plugin_number; |
| 134 |
|
|
extern crossfire_plugin* plugins_list; |
| 135 |
|
|
|
| 136 |
|
|
#ifdef WIN32 |
| 137 |
|
|
|
| 138 |
|
|
#define plugins_dlopen(fname) LoadLibrary(fname) |
| 139 |
|
|
#define plugins_dlclose(lib) FreeLibrary(lib) |
| 140 |
|
|
#define plugins_dlsym(lib,name) GetProcAddress(lib,name) |
| 141 |
|
|
|
| 142 |
|
|
#else /*WIN32 */ |
| 143 |
|
|
|
| 144 |
|
|
#define plugins_dlopen(fname) dlopen(fname,RTLD_NOW|RTLD_GLOBAL) |
| 145 |
|
|
#define plugins_dlclose(lib) dlclose(lib) |
| 146 |
|
|
#define plugins_dlsym(lib,name) dlsym(lib,name) |
| 147 |
|
|
#define plugins_dlerror() dlerror() |
| 148 |
|
|
#endif /* WIN32 */ |
| 149 |
|
|
|
| 150 |
|
|
|
| 151 |
|
|
/* OBJECT-RELATED HOOKS */ |
| 152 |
|
|
|
| 153 |
|
|
#define CFAPI_OBJECT_PROP_OB_ABOVE 1 |
| 154 |
|
|
#define CFAPI_OBJECT_PROP_OB_BELOW 2 |
| 155 |
|
|
#define CFAPI_OBJECT_PROP_NEXT_ACTIVE_OB 3 |
| 156 |
|
|
#define CFAPI_OBJECT_PROP_PREV_ACTIVE_OB 4 |
| 157 |
|
|
#define CFAPI_OBJECT_PROP_INVENTORY 5 |
| 158 |
|
|
#define CFAPI_OBJECT_PROP_ENVIRONMENT 6 |
| 159 |
|
|
#define CFAPI_OBJECT_PROP_HEAD 7 |
| 160 |
|
|
#define CFAPI_OBJECT_PROP_CONTAINER 8 |
| 161 |
|
|
#define CFAPI_OBJECT_PROP_MAP 9 |
| 162 |
|
|
#define CFAPI_OBJECT_PROP_COUNT 10 |
| 163 |
|
|
#define CFAPI_OBJECT_PROP_REFCOUNT 11 |
| 164 |
|
|
#define CFAPI_OBJECT_PROP_NAME 12 |
| 165 |
|
|
#define CFAPI_OBJECT_PROP_NAME_PLURAL 13 |
| 166 |
|
|
#define CFAPI_OBJECT_PROP_TITLE 14 |
| 167 |
|
|
#define CFAPI_OBJECT_PROP_RACE 15 |
| 168 |
|
|
#define CFAPI_OBJECT_PROP_SLAYING 16 |
| 169 |
|
|
#define CFAPI_OBJECT_PROP_SKILL 17 |
| 170 |
|
|
#define CFAPI_OBJECT_PROP_MESSAGE 18 |
| 171 |
|
|
#define CFAPI_OBJECT_PROP_LORE 19 |
| 172 |
|
|
#define CFAPI_OBJECT_PROP_X 20 |
| 173 |
|
|
#define CFAPI_OBJECT_PROP_Y 21 |
| 174 |
|
|
#define CFAPI_OBJECT_PROP_SPEED 22 |
| 175 |
|
|
#define CFAPI_OBJECT_PROP_SPEED_LEFT 23 |
| 176 |
|
|
#define CFAPI_OBJECT_PROP_NROF 24 |
| 177 |
|
|
#define CFAPI_OBJECT_PROP_DIRECTION 25 |
| 178 |
|
|
#define CFAPI_OBJECT_PROP_FACING 26 |
| 179 |
|
|
#define CFAPI_OBJECT_PROP_TYPE 27 |
| 180 |
|
|
#define CFAPI_OBJECT_PROP_SUBTYPE 28 |
| 181 |
|
|
#define CFAPI_OBJECT_PROP_CLIENT_TYPE 29 |
| 182 |
|
|
#define CFAPI_OBJECT_PROP_RESIST 30 |
| 183 |
|
|
#define CFAPI_OBJECT_PROP_ATTACK_TYPE 31 |
| 184 |
|
|
#define CFAPI_OBJECT_PROP_PATH_ATTUNED 32 |
| 185 |
|
|
#define CFAPI_OBJECT_PROP_PATH_REPELLED 33 |
| 186 |
|
|
#define CFAPI_OBJECT_PROP_PATH_DENIED 34 |
| 187 |
|
|
#define CFAPI_OBJECT_PROP_MATERIAL 35 |
| 188 |
|
|
#define CFAPI_OBJECT_PROP_MATERIAL_NAME 36 |
| 189 |
|
|
#define CFAPI_OBJECT_PROP_MAGIC 37 |
| 190 |
|
|
#define CFAPI_OBJECT_PROP_VALUE 38 |
| 191 |
|
|
#define CFAPI_OBJECT_PROP_LEVEL 39 |
| 192 |
|
|
#define CFAPI_OBJECT_PROP_LAST_HEAL 40 |
| 193 |
|
|
#define CFAPI_OBJECT_PROP_LAST_SP 41 |
| 194 |
|
|
#define CFAPI_OBJECT_PROP_LAST_GRACE 42 |
| 195 |
|
|
#define CFAPI_OBJECT_PROP_LAST_EAT 43 |
| 196 |
|
|
#define CFAPI_OBJECT_PROP_INVISIBLE_TIME 44 |
| 197 |
|
|
#define CFAPI_OBJECT_PROP_PICK_UP 45 |
| 198 |
|
|
#define CFAPI_OBJECT_PROP_ITEM_POWER 46 |
| 199 |
|
|
#define CFAPI_OBJECT_PROP_GEN_SP_ARMOUR 47 |
| 200 |
|
|
#define CFAPI_OBJECT_PROP_WEIGHT 48 |
| 201 |
|
|
#define CFAPI_OBJECT_PROP_WEIGHT_LIMIT 49 |
| 202 |
|
|
#define CFAPI_OBJECT_PROP_CARRYING 50 |
| 203 |
|
|
#define CFAPI_OBJECT_PROP_GLOW_RADIUS 51 |
| 204 |
|
|
#define CFAPI_OBJECT_PROP_PERM_EXP 52 |
| 205 |
|
|
#define CFAPI_OBJECT_PROP_CURRENT_WEAPON 53 |
| 206 |
|
|
#define CFAPI_OBJECT_PROP_ENEMY 54 |
| 207 |
|
|
#define CFAPI_OBJECT_PROP_ATTACKED_BY 55 |
| 208 |
|
|
#define CFAPI_OBJECT_PROP_RUN_AWAY 56 |
| 209 |
|
|
#define CFAPI_OBJECT_PROP_CHOSEN_SKILL 57 |
| 210 |
|
|
#define CFAPI_OBJECT_PROP_HIDDEN 58 |
| 211 |
|
|
#define CFAPI_OBJECT_PROP_MOVE_STATUS 59 |
| 212 |
|
|
#define CFAPI_OBJECT_PROP_MOVE_TYPE 60 |
| 213 |
|
|
#define CFAPI_OBJECT_PROP_SPELL_ITEM 61 |
| 214 |
|
|
#define CFAPI_OBJECT_PROP_EXP_MULTIPLIER 62 |
| 215 |
|
|
#define CFAPI_OBJECT_PROP_ARCHETYPE 63 |
| 216 |
|
|
#define CFAPI_OBJECT_PROP_OTHER_ARCH 64 |
| 217 |
|
|
#define CFAPI_OBJECT_PROP_CUSTOM_NAME 65 |
| 218 |
|
|
#define CFAPI_OBJECT_PROP_ANIM_SPEED 66 |
| 219 |
|
|
#define CFAPI_OBJECT_PROP_FRIENDLY 67 |
| 220 |
|
|
#define CFAPI_OBJECT_PROP_SHORT_NAME 68 |
| 221 |
|
|
#define CFAPI_OBJECT_PROP_BASE_NAME 69 |
| 222 |
|
|
#define CFAPI_OBJECT_PROP_MAGICAL 70 |
| 223 |
|
|
#define CFAPI_OBJECT_PROP_LUCK 71 |
| 224 |
|
|
#define CFAPI_OBJECT_PROP_EXP 72 |
| 225 |
|
|
#define CFAPI_OBJECT_PROP_OWNER 73 |
| 226 |
|
|
#define CFAPI_OBJECT_PROP_PRESENT 74 |
| 227 |
|
|
#define CFAPI_OBJECT_PROP_CHEATER 75 |
| 228 |
|
|
#define CFAPI_OBJECT_PROP_MERGEABLE 76 |
| 229 |
|
|
#define CFAPI_OBJECT_PROP_PICKABLE 77 |
| 230 |
|
|
#define CFAPI_OBJECT_PROP_FLAGS 78 |
| 231 |
|
|
#define CFAPI_OBJECT_PROP_STR 79 |
| 232 |
|
|
#define CFAPI_OBJECT_PROP_DEX 80 |
| 233 |
|
|
#define CFAPI_OBJECT_PROP_CON 81 |
| 234 |
|
|
#define CFAPI_OBJECT_PROP_WIS 82 |
| 235 |
|
|
#define CFAPI_OBJECT_PROP_INT 83 |
| 236 |
|
|
#define CFAPI_OBJECT_PROP_POW 84 |
| 237 |
|
|
#define CFAPI_OBJECT_PROP_CHA 85 |
| 238 |
|
|
#define CFAPI_OBJECT_PROP_WC 86 |
| 239 |
|
|
#define CFAPI_OBJECT_PROP_AC 87 |
| 240 |
|
|
#define CFAPI_OBJECT_PROP_HP 88 |
| 241 |
|
|
#define CFAPI_OBJECT_PROP_SP 89 |
| 242 |
|
|
#define CFAPI_OBJECT_PROP_GP 90 |
| 243 |
|
|
#define CFAPI_OBJECT_PROP_FP 91 |
| 244 |
|
|
#define CFAPI_OBJECT_PROP_MAXHP 92 |
| 245 |
|
|
#define CFAPI_OBJECT_PROP_MAXSP 93 |
| 246 |
|
|
#define CFAPI_OBJECT_PROP_MAXGP 94 |
| 247 |
|
|
#define CFAPI_OBJECT_PROP_DAM 95 |
| 248 |
|
|
#define CFAPI_OBJECT_PROP_GOD 96 |
| 249 |
|
|
#define CFAPI_OBJECT_PROP_ARCH_NAME 97 |
| 250 |
|
|
#define CFAPI_OBJECT_PROP_INVISIBLE 98 |
| 251 |
|
|
#define CFAPI_OBJECT_PROP_FACE 99 |
| 252 |
|
|
#define CFAPI_OBJECT_ANIMATION 100 |
| 253 |
|
|
#define CFAPI_PLAYER_PROP_IP 150 |
| 254 |
|
|
#define CFAPI_PLAYER_PROP_MARKED_ITEM 151 |
| 255 |
|
|
#define CFAPI_PLAYER_PROP_PARTY 152 |
| 256 |
|
|
|
| 257 |
|
|
#define CFAPI_MAP_PROP_FLAGS 0 |
| 258 |
|
|
#define CFAPI_MAP_PROP_DIFFICULTY 1 |
| 259 |
|
|
#define CFAPI_MAP_PROP_PATH 2 |
| 260 |
|
|
#define CFAPI_MAP_PROP_TMPNAME 3 |
| 261 |
|
|
#define CFAPI_MAP_PROP_NAME 4 |
| 262 |
|
|
#define CFAPI_MAP_PROP_RESET_TIME 5 |
| 263 |
|
|
#define CFAPI_MAP_PROP_RESET_TIMEOUT 6 |
| 264 |
|
|
#define CFAPI_MAP_PROP_PLAYERS 7 |
| 265 |
|
|
#define CFAPI_MAP_PROP_LIGHT 8 |
| 266 |
|
|
#define CFAPI_MAP_PROP_DARKNESS 9 |
| 267 |
|
|
#define CFAPI_MAP_PROP_WIDTH 10 |
| 268 |
|
|
#define CFAPI_MAP_PROP_HEIGHT 11 |
| 269 |
|
|
#define CFAPI_MAP_PROP_ENTER_X 12 |
| 270 |
|
|
#define CFAPI_MAP_PROP_ENTER_Y 13 |
| 271 |
|
|
#define CFAPI_MAP_PROP_TEMPERATURE 14 |
| 272 |
|
|
#define CFAPI_MAP_PROP_PRESSURE 15 |
| 273 |
|
|
#define CFAPI_MAP_PROP_HUMIDITY 16 |
| 274 |
|
|
#define CFAPI_MAP_PROP_WINDSPEED 17 |
| 275 |
|
|
#define CFAPI_MAP_PROP_WINDDIR 18 |
| 276 |
|
|
#define CFAPI_MAP_PROP_SKY 19 |
| 277 |
|
|
#define CFAPI_MAP_PROP_WPARTX 20 |
| 278 |
|
|
#define CFAPI_MAP_PROP_WPARTY 21 |
| 279 |
|
|
#define CFAPI_MAP_PROP_MESSAGE 22 |
| 280 |
|
|
#define CFAPI_MAP_PROP_NEXT 23 |
| 281 |
|
|
#define CFAPI_MAP_PROP_REGION 24 |
| 282 |
|
|
|
| 283 |
|
|
#define CFAPI_ARCH_PROP_NAME 0 |
| 284 |
|
|
#define CFAPI_ARCH_PROP_NEXT 1 |
| 285 |
|
|
#define CFAPI_ARCH_PROP_HEAD 2 |
| 286 |
|
|
#define CFAPI_ARCH_PROP_MORE 3 |
| 287 |
|
|
#define CFAPI_ARCH_PROP_CLONE 4 |
| 288 |
|
|
|
| 289 |
|
|
#define CFAPI_PARTY_PROP_NAME 0 |
| 290 |
|
|
#define CFAPI_PARTY_PROP_NEXT 1 |
| 291 |
|
|
#define CFAPI_PARTY_PROP_PASSWORD 2 |
| 292 |
|
|
#define CFAPI_PARTY_PROP_PLAYER 3 |
| 293 |
|
|
|
| 294 |
|
|
#define CFAPI_REGION_PROP_NAME 0 |
| 295 |
|
|
#define CFAPI_REGION_PROP_NEXT 1 |
| 296 |
|
|
#define CFAPI_REGION_PROP_PARENT 2 |
| 297 |
|
|
#define CFAPI_REGION_PROP_LONGNAME 3 |
| 298 |
|
|
#define CFAPI_REGION_PROP_MESSAGE 4 |
| 299 |
|
|
|
| 300 |
|
|
/*****************************************************************************/ |
| 301 |
|
|
/* Exportable functions. Any plugin should define all those. */ |
| 302 |
|
|
/* initPlugin is called when the plugin initialization process starts.*/ |
| 303 |
|
|
/* endPlugin is called before the plugin gets unloaded from memory. */ |
| 304 |
|
|
/* getPluginProperty is currently unused. */ |
| 305 |
|
|
/* registerHook is used to transmit hook pointers from server to plugin.*/ |
| 306 |
|
|
/* triggerEvent is called whenever an event occurs. */ |
| 307 |
|
|
/*****************************************************************************/ |
| 308 |
|
|
/*extern MODULEAPI CFParm* initPlugin(CFParm* PParm); |
| 309 |
|
|
extern MODULEAPI CFParm* endPlugin(CFParm* PParm); |
| 310 |
|
|
extern MODULEAPI CFParm* getPluginProperty(CFParm* PParm); |
| 311 |
|
|
extern MODULEAPI CFParm* registerHook(CFParm* PParm); |
| 312 |
|
|
extern MODULEAPI CFParm* triggerEvent(CFParm* PParm); |
| 313 |
|
|
*/ |
| 314 |
|
|
|
| 315 |
|
|
typedef struct _hook_entry |
| 316 |
|
|
{ |
| 317 |
|
|
f_plug_api func; |
| 318 |
|
|
int fid; |
| 319 |
|
|
char fname[256]; |
| 320 |
|
|
} hook_entry; |
| 321 |
|
|
|
| 322 |
|
|
#endif /*PLUGIN_H_*/ |