|
class tga_writer
{
FILE * Pfile;
int width, height;
public:
int GetE (char * filePath, int X, int Y, int compRatio);
};
void tga_writer :: int GetE (char * filePath, int X, int Y, int compRatio) ();
void main () {
tga_writer * tw = new tga_writer;
tw-> GetE ();
delete tw;
} |
|