/******************************************************************* * 							 Pilot Software * *		 Copyright(c) 1994, Palm Computing Inc., All Rights Reserved * *-------------------------------------------------------------------   * FileName: *		FloatMgr.h * * Description: *		Floating point routines * * History: *   	3/9/95 - Created by Ron Marianetti * *******************************************************************/  #ifndef __FLOATMGR_H__#define __FLOATMGR_H__#include <Common.h>/************************************************************************ * Constants ***********************************************************************/#define	fMaxLong	((Long)0x7FFFFFFF);#define	fMinLong	((Long)0x80000000);/************************************************************************ * Floating point type * An exponent of kExpInf represents infinity ***********************************************************************/typedef struct {		DWord			man;		// unsigned 32 bit	SWord			exp;		// signed 16 bit	SByte