I found that if you create a file called "usertype.dat" in visual studio's IDE dir, that you can specify keywords that will appear in blue like "new" or "int".
Is there a way to assign values to these? I don't want to have to use "#define [keyword] [value]" in every single file that I use..
Specifically, I would like to have a "null = 0" keyword without having to include windows.h or hold shift to type it every time.
thanks, Nick
edit: I found that you can add a compiler directive to do it!
/Dnull=0
I guess its not the end of the world if I have to add that to my projects, but it would be nice if I could get visual studio to do it automatically