home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
bbs
/
cbm
/
os-include.lha
/
os-include
/
libraries
/
mathlibrary.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-15
|
1KB
|
38 lines
#ifndef LIBRARIES_MATHLIBRARY_H
#define LIBRARIES_MATHLIBRARY_H
/*
** $VER: mathlibrary.h 1.6 (13.7.90)
** Includes Release 40.15
**
** Data structure returned by OpenLibrary of:
** mathieeedoubbas.library,mathieeedoubtrans.library
** mathieeesingbas.library,mathieeesingtrans.library
**
** (C) Copyright 1987-1993 Commodore-Amiga, Inc.
** All Rights Reserved
*/
#ifndef EXEC_LIBRARIES_H
#include <exec/libraries.h>
#endif
struct MathIEEEBase
{
struct Library MathIEEEBase_LibNode;
unsigned char MathIEEEBase_reserved[18];
int (*MathIEEEBase_TaskOpenLib)();
int (*MathIEEEBase_TaskCloseLib)();
/* This structure may be extended in the future */
};
/*
* Math resources may need to know when a program opens or closes this
* library. The functions TaskOpenLib and TaskCloseLib are called when
* a task opens or closes this library. They are initialized to point to
* local initialization pertaining to 68881 stuff if 68881 resources
* are found. To override the default the vendor must provide appropriate
* hooks in the MathIEEEResource. If specified, these will be called
* when the library initializes.
*/
#endif /* LIBRARIES_MATHLIBRARY_H */