Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
727 B

/****************************************************************************
CALC.H -- Data structures for complex point storage.
Copyright (C) 1990 Microsoft Corporation.
****************************************************************************/
/*
* A point on the complex plane
*/
typedef struct _cpoint {
double real;
double imag;
} CPOINT;
typedef CPOINT far * PCPOINT;
typedef CPOINT near * NPCPOINT;
// From OS2DEF.H, because the server is OS/2
//typedef struct _RECTL { /* rcl */
// long xLeft;
// long yBottom;
// long xRight;
// long yTop;
//} RECTL;
//typedef RECTL FAR *PRECTL;
//typedef RECTL near *NPRECTL;
void MandelCalc( PCPOINT, PRECTL, PDWORD);