for the VC 2005...:
On all errors such as:
Code:
c:\documents and settings\voivodian\moje dokumenty\visual studio 2005\projects\monster_plugin\dlls\apache.cpp(949) : error C3867: 'CMApacheHVR::AccelerateThink': function call missing argument list; use '&CMApacheHVR::AccelerateThink' to create a pointer to member
change such lines from:
Code:
SetThink( AccelerateThink );
to
Code:
SetThink( CApache::AccelerateThink );
and so on...
but don't forget to change CApache to the class name this functions called from...