home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mandelc.zip / dllfractal.h < prev    next >
C/C++ Source or Header  |  1993-08-01  |  396b  |  18 lines

  1. #ifndef dllFractal_h_included
  2. #define dllFractal_h_included
  3.  
  4.  
  5. extern "C" const char * _export getName(void);
  6. extern "C" void _export calculateFractal(
  7.     unsigned int iSizeX,
  8.     unsigned int iMaxColors,
  9.     unsigned int iMaxIterations,
  10.     unsigned char *pData,
  11.     double dLimit,
  12.     double dxdx,
  13.     double dydx,
  14.     double dx,
  15.     double dy);
  16.  
  17. #endif !dllFractal_h_included
  18.