C/Visual C - ¡Ayuda urgente, por favor! (no matching symbolic)

 
Vista:

¡Ayuda urgente, por favor! (no matching symbolic)

Publicado por randomize (1 intervención) el 14/03/2007 10:00:07
Estoy en WindowsXP y VC++6 y al tratar de ejecutar la compilacion recibo esto:

Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\kernel32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\SDL.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\winmm.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\user32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\gdi32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\advapi32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\rpcrt4.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\msvcrt.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\ddraw.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\dciman32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\MSCTF.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\kbdus.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\kbdsp.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\dsound.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\ole32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\version.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\dinput.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\hid.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\setupapi.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\wintrust.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\crypt32.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\msasn1.dll', no matching symbolic information found.
Loaded 'C:\WINDOWS\system32\imagehlp.dll', no matching symbolic information found.
The thread 0x3B8 has exited with code 0 (0x0).
The thread 0x2C8 has exited with code 0 (0x0).
The thread 0x598 has exited with code 0 (0x0).


Gracias de antemano.

S2.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:¡Ayuda urgente, por favor! (no matching symboli

Publicado por fernando.gomez (1603 intervenciones) el 14/03/2007 15:38:15
Hola. Eso no lo recibes al compilar, sino al ejecutar la aplicación desde VC6. De hecho:

The thread 0x3B8 has exited with code 0 (0x0).
The thread 0x2C8 has exited with code 0 (0x0).
The thread 0x598 has exited with code 0 (0x0).

significa que tu aplicación terminó sin problemas (EXIT_SUCCESS). Las líneas anteriores que te aparecen son todas las librerías que carga tu programa.

No hay error alguno ni nada de qué preocuparse.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar