I have this in my c++ code:
std::vector<WCHAR> sText(4096);
I want to simplify it into a macro so I'm not always typing std::vector<WCHAR>
every time. I can't figure out how to shorthand this into a macro. Any help is appreciated.
I have this in my c++ code:
std::vector<WCHAR> sText(4096);
I want to simplify it into a macro so I'm not always typing std::vector<WCHAR>
every time. I can't figure out how to shorthand this into a macro. Any help is appreciated.