using DC

Started by
0 comments, last by Daddy-O 21 years, 3 months ago
I''m writing a simple game engine in C++ so anways I declare a DC globally like this HDC g_hDC i have a class GameEngine when ever i use g_hDC in a class method the compiler tells me.. C:\PROGRAMS\dd7\GameEngine.cpp(63) : error C2065: ''g_hDC'' : undeclared identifier what''s the matter?? how can it be undeclared if it is global??
Advertisement
in the other source file write:

extern HDC g_hDC;

and all will be fine and dandy

[Insert cool signature here]
[Insert cool signature here]

This topic is closed to new replies.

Advertisement