MSVC8 Project File + SDK Update

This commit is contained in:
Scott Ehlert
2006-04-07 11:04:28 +00:00
parent 9eb3cd1793
commit 070d8177c5
6 changed files with 388 additions and 14 deletions

View File

@ -21,6 +21,19 @@
// metamod plugin?
// #define USE_METAMOD
// use memory manager/tester?
// note that if you use this, you cannot construct/allocate
// anything before the module attached (OnAmxxAttach).
// be careful of default constructors using new/malloc!
// #define MEMORY_TEST
// Unless you use STL or exceptions, keep this commented.
// It allows you to compile without libstdc++.so as a dependency
// #define NO_ALLOC_OVERRIDES
// Uncomment this if you are using MSVC8 or greater and want to fix some of the compatibility issues yourself
// #define NO_MSVC8_AUTO_COMPAT
// - AMXX Init functions
// Also consider using FN_META_*
// AMXX query
@ -460,4 +473,3 @@
#endif // USE_METAMOD
#endif // __MODULECONFIG_H__