Thread: I don't understand this error...

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User
    Join Date
    May 2003
    Posts
    195
    Quote Originally Posted by Salem
    > then it still crashes:
    What crash? It's working perfectly

    > Loaded 'ntdll.dll', no matching symbolic information found.
    > Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.
    This is just information telling you that if you ever have to debug down into the operating system that you're in for a rough time (no symbols you see). Other than that, these two messages can be ignored.
    You can get rid of them by rummaging around on the Microsoft site somewhere (or your MSDN disks perhaps) for the latest symbol files for your OS.

    > The thread 0x7C4 has exited with code 4373080 (0x42BA58).
    Well that's the sort of garbage you get when you say void main.
    Now do the job properly and finish with a return 0;
    then the exit status will always be a nice successful 0

    > void main and int main doesnt really matter for me since its just a test program
    That kind of attitude will get you a long way - well just as far as the next "it doesn't matter to me" when in fact it "does matter to you".
    Either you learn to do the job right each time out of habit, or you end up being roadkill on the information superhighway.
    Thanks for the help but what i don't understand is why I never received these error messages before...? I've used void main a lot and I never get that exit garbage. In addition, I have never heard of this "no symbols" business; what does it mean? Is it because I reinstalled Windows with SP2? Is there any way to get rid of them? I see that the program runs fine but normally before, my programs, after execution, say "Press any key to continue" but now just closes on its own and produces those exit codes unless i stick it a getch() or pause thing. Odd
    Last edited by KneeGrow; 11-16-2004 at 04:49 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Getting an error with OpenGL: collect2: ld returned 1 exit status
    By Lorgon Jortle in forum C++ Programming
    Replies: 6
    Last Post: 05-08-2009, 08:18 PM
  2. An error is driving me nuts!
    By ulillillia in forum C Programming
    Replies: 5
    Last Post: 04-04-2009, 09:15 PM
  3. Making C DLL using MSVC++ 2005
    By chico1st in forum C Programming
    Replies: 26
    Last Post: 05-28-2008, 01:17 PM
  4. Connecting to a mysql server and querying problem
    By Diod in forum C++ Programming
    Replies: 8
    Last Post: 02-13-2006, 10:33 AM
  5. Couple C questions :)
    By Divx in forum C Programming
    Replies: 5
    Last Post: 01-28-2003, 01:10 AM