Advertisement

local functions not supported

Started by November 07, 2000 03:29 PM
2 comments, last by Gaiiden 24 years, 2 months ago
What did I do to get an error on all my functions except WinMain and including WindowProc() (see subject title) and then get an error stating there is an unexpected end of file found? Is it a missing bracket somewhere or what?? I think this has happened to me once a while ago but I can''t remeber what I did to fix it. ============================== "Need more eeenput..." - #5, "Short Circuit" ==============================

Drew Sikora
Executive Producer
GameDev.net

You''re missing a } somewhere. Or you put in a { accidentally without noticing.


Please state the nature of the debugging emergency.


sharewaregames.20m.com

Advertisement
Damn, that''s what I thought. Tho usually C++ catches that stuff. I guess that means its not at the end of an if while for or switch statement huh? Ah well, I''ll just have to look (*grumble gripe moan*)

==============================
"Need more eeenput..."

- #5, "Short Circuit"
==============================

Drew Sikora
Executive Producer
GameDev.net

it could be that you dont have a semiclon after declaring a struct or class like
    struct myStruct{  int dataMember};    



"Now go away or I shall taunt you a second time"
- Monty Python and the Holy Grail
themGames Productions

This topic is closed to new replies.

Advertisement