20 lines
491 B
C++
20 lines
491 B
C++
#ifndef _PROTO_MAPTERR_HPP
|
|
#define _PROTO_MAPTERR_HPP_
|
|
|
|
class Display;
|
|
class ViewPoint;
|
|
class TrigTable;
|
|
class Angles;
|
|
class Geometry;
|
|
class Bitmap;
|
|
|
|
extern "C"
|
|
{
|
|
int mapTerrain(ViewPoint *pViewPoint,void *pBackBuffer,DWORD bmWidth,DWORD bmHeight);
|
|
int setTrig(TrigTable *pTrigTable);
|
|
int setAngles(Angles *pAngles);
|
|
int setGeometry(Geometry *pGeometry);
|
|
int setMaps(Bitmap *pColorBitmap,Bitmap *pHeightBitmap);
|
|
void mapProfile(int *pColIter,int *pStepIter,int *pWhileIter);
|
|
}
|
|
#endif |