How I'm creating my rendering context using wgl :
//Device
HDC hdc = GetDC(hWnd);
HGLRC hRC = wglCreateContext(hdc);
How/where/when should I change the version of the OpenGL context?
Is there a function like wglCreateContextVer(hdc, major(3) /major/, 0 /minor/, "core");