std output and trying to find it[solved]

Started by
2 comments, last by bobsaget 15 years, 8 months ago
I am currently watching some of 3dbuzz's videos and I am running into a problem. I have followed the instructions and looked on several websites but I am getting this error for this code code- HANDLE output_handle; COORD pos; pos.X = x; pos.Y = y; output_handle = GetStdHandle(STD_OUTPUT_HANDlE); SetConsoleCursorPosition(output_handle,pos); error- error C2065: 'STD_OUTPUT_HANDlE' : undeclared identifier I have included windows.h and still it wil not recognize the handle. What should I do? thanks [Edited by - bobsaget on August 14, 2008 3:55:10 PM]
Advertisement
Did you notice that you didn't capitalize the last L?
Uppercase the last L as well.
Million-to-one chances occur nine times out of ten!
Quote:Original post by SiCrane
Did you notice that you didn't capitalize the last L?


Wow that was the biggest face palm moment of my life. Thanks, problem solved.

This topic is closed to new replies.

Advertisement