1. Un-iiinclude?
- Posted by DonCole May 30, 2016
- 1248 views
How can I un-include an include?
Don Cole
2. Re: Un-iiinclude?
- Posted by ne1uno May 30, 2016
- 1241 views
How can I un-include an include?
Don Cole
no, anyway. all the includes happen before your program run.
going to have to find another way, what are you trying to do? and more important, when are you trying to do it.
you can use ifdef SOMEWORDS to selectively include files pass -d SOMEWORDS on the commandline or in eu.cfg to define them
3. Re: Un-iiinclude?
- Posted by ghaberek (admin) May 31, 2016
- 1200 views
How can I un-include an include?
That sounds strange. Include files aren't usually something one needs to worry about at runtime. What are you trying to accomplish?
no, anyway. all the includes happen before your program run.
going to have to find another way, what are you trying to do? and more important, when are you trying to do it.
you can use ifdef SOMEWORDS to selectively include files pass -d SOMEWORDS on the commandline or in eu.cfg to define them
You can also use with define SOMEWORDS in your code. I use this a lot for testing code, instead of fiddling with the command line or eu.cfg.
-Greg