www.pudn.com > screensaver.rar > commonlib.h


#include "genlib.h" 
 
#ifndef COMMONLIB_H 
#define COMMONLIB_H 
 
#define PI 3.1415926535 
 
void DefineColors (void); 
string GetRandomColor (void); 
void DrawFilledRectangle (double dblLeft, double dblTop, double dblWidth, double dblHeight, string strColor); 
void DrawBox (double dblWidth, double dblHeight); 
void CleanScreen (void); 
void Wait (int intTime); 
bool InRange (double num, double l, double h); 
void DrawBoxEx (double left, double top, double width, double height); 
 
#endif