home *** CD-ROM | disk | FTP | other *** search
- /*****
- * GeneralUtilities.h
- *
- * Interfacce pubbliche per GeneralUtilities.c
- * © Com&Media, 1994
- *
- * 15/10/94 Scorporo da Utilities.h (Fabio Barbieri)
- * 18/8/94 Prima stesura (Fabio Barbieri)
- *
- ****/
- #include <Types.h>
-
- /***** Function prototyping *****/
- void Wait(short);
- void FixedToFloat(Fixed, float *);
- void FloatToFixed(float, Fixed *);
- Boolean GetFontNumber(Str255, short *);
- Boolean CompHandle(Handle, Handle);
- void CicloAttesa(void);
-
- /***
- *
- * get the lower byte of a short.
- *
- ****/
- short getLow(short value);
-
- /***
- *
- * get the lower byte of a short.
- *
- ****/
- short getHi(short value);
-
- /***
- *
- * merge the high and low part of a short.
- *
- ***/
- short merge(short hi, short low);
-
-