New to C++ and trying to make a simple game as a beginners project.
I am using VScode (but I am new to VScode too)
I am getting the error in the title when I try to compile (just to check that it compiles with the stage I am at).
I understand it to be something to do with a linker, but I can only find solutions relating to Visual Studio, not VS code.
//Render
StretchDIBits(hdc, 0, 0, buffer_width, buffer_height, 0, 0, buffer_width, buffer_height, buffer_memory, &buffer_bitmap_info, DIB_RGB_COLORS, SRCCOPY);
The above is the line of code my compiler has issue with.
Up until I have added this code, the program has compiled and done what it was meant too.