Mail Archives: djgpp/2000/12/28/14:21:33
Hail to you all.
I'm in trouble using DJGPP. I start playing around it since two days ago,
and I think I must learn much about it.
I'm using rhide as the editor.
I have a program wrote in C++ to BorlandC++ 1.0 (Old Dos Compiler). In
that program I use 3 files, one of it called Snake.h. In it I have the
fowling:
class Snake {
..
public :
Snake();
..
..
};
Snake::Snake()
{
..
}
Its supose to be a class for a Snake :)
and in the main file: ASnake.cpp :
#include "snake.h"
void main()
{
...
Snake *snake;
snake=new Snake();
...
}
I works under Borland Compiler, but when I tried to run into DJGPP using
rhide it returns an error:
"Don't Know how to build snake.o from snake.h"
ok, thats all... by the way, I would want to learn more about DJGPP
include files and also allegro... and C++ also, if you think you can help
me, I would apreciate a hand.
~Tanks in advance.
- Raw text -