home *** CD-ROM | disk | FTP | other *** search
- /*
- * BCC2GRX - Interfacing Borland based graphics programs to LIBGRX
- * Copyright (C) 1993 Hartmut Schirmer
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the Free
- * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- *
- * Contact : Hartmut Schirmer
- * Feldstrasse 118
- * D-2300 Kiel 1
- * Germany
- *
- * No telephone calls please !
- *
- * NOTE : Please use ZIP 24105 after July 1 1993 !!
- *
- */
-
- #ifndef __TP_PORT_H
- #define __TP_PORT_H
-
- extern long RANDSEED_TP;
- #define randseed RANDSEED_TP
- #define RandSeed RANDSEED_TP
-
- unsigned short RANDOM_TP(unsigned short range);
- void RANDZE_TP(void);
- double RANDOM_R_TP(void);
-
- #define ReadKey Readkey
- char Readkey(void);
-
- /* ------ Borland-like delay() function ----- */
- void delay(unsigned ms); /* Source : delay.s */
-
- #endif
-
-