Win32 Standard C++ library

How come I can't use the std namespace in any Win32 program? I been trying to make a program wiht vectors in it but it returns this error.


error C2039: 'vector' : is not a member of 'std'


Same with the strings
You need to include <vector>.
Oh yeah! damn forgot about that haha, my bad. Thanks :D
Topic archived. No new replies allowed.