End Google Ads 201810 - BS.net 01 --> I enjoy using types such as UINT as an alternative to unsigned int, which is all well and good if I have windows code in my project, however I have to manually define this in other projects that dont use any windows code. what I'd like to know is if it's possible to do something along the lines of the following...

#ifdef UINT
typedef UINT unsigned int;
#endif

I have a feeling that code doesn't do what I want, so I'm asking, does it, or doesn't it?