PORTAB
#1
La verdad que el programa es una chorrada. Pero no he conseguido compilarlo.
#include "SDL.h"
int main( void )
{
// Body of the program goes here.
return 0;
}
Este el error que me da y tebngo instalado el Directx version 7.
--------------------Configuration: test - Win32 Debug--------------------
Linking…
.\SDL.lib : fatal error LNK1106: invalid file or disk full: cannot seek to
0x38c0b564 Error executing link.exe.
test.exe - 1 error(s), 0 warning(s)
?ALGUIEN SABE QUE PASA?
Gracias.
Mensaje citado por: PORTAB :
La verdad que el programa es una chorrada. Pero no he conseguido
compilarlo.
Es por la cabecera del main.
Creo que tienes que poner
#include "SDL.h"
main(int Num,char **arg)
{
// Body of the program goes here.
return 0;
}
Esto deberia funcionar.
Creo que el idioma preferido en esta lista es Ingles.
Miguel Angel Blanch Lardin
http://www.arianne.cx
#include "SDL.h"
int main( void )
{
// Body of the program goes here.
return 0;
}
Este el error que me da y tebngo instalado el Directx version 7.
--------------------Configuration: test - Win32
Debug--------------------
Linking…
.\SDL.lib : fatal error LNK1106: invalid file or disk full: cannot
seek to> 0x38c0b564 Error executing link.exe.
test.exe - 1 error(s), 0 warning(s)
?ALGUIEN SABE QUE PASA?
Gracias.
Linking…
.\SDL.lib : fatal error LNK1106: invalid file or disk full: cannot seek to
0x38c0b564 Error executing link.exe.
test.exe - 1 error(s), 0 warning(s)
?ALGUIEN SABE QUE PASA?
Gracias.
Puede ser disco lleno (disk full)
Astorni