Sorry, but you cant include files during runtime. They simply inform the compiler a function is defined elsewhere (referring to natives), so doing that doesnt make much sense.
EDIT:
Quote:
Originally Posted by bl4nk
That's not how it works. Only the following line is inside of the if statement.
|
Sure, but the line immediately below is ignored since its a compiler directive, and so the line below that one is taken in instead.
EDIT 2:
If you wanna check whether the file is already included or not, do
Code:
#if !defined _sdktools_included
#include <sdktools>
#endif
Though it doesnt hurt even if sdktools was included twice cause it uses that define too.
__________________