Fixed silly link errors in MSVC

This commit is contained in:
Steve Dudenhoeffer
2007-05-04 13:05:09 +00:00
parent 66d7d39bee
commit 1073a42409
3 changed files with 50 additions and 50 deletions

View File

@@ -10,8 +10,8 @@ typedef struct hook_s
int paramcount; // how many parameters are in the func
void *targetfunc; // the target hook
int (*makefunc)(AMX *, const char*); // function that creates forwards
int (*call)(AMX *, cell*); // function to call the vcall
int (*ecall)(AMX *, cell*); // function to ecall the vcall
cell (*call)(AMX *, cell*); // function to call the vcall
cell (*ecall)(AMX *, cell*); // function to ecall the vcall
} hook_t;
extern hook_t hooklist[];