home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
programming
/
libtool_463
/
ccomplex
/
complexc.fd
< prev
next >
Wrap
Text File
|
1990-06-27
|
1KB
|
23 lines
##base ComplexBase *the name of our base used by C glue code and C PRAGMAS
##name complex *the name of our library (i.e. simple.library)
##vers 1 *version #
##revs 0 *revision #
##open OpenUp *to be called for each app that opens the lib
##clos CloseUp *to be called for each app that closes the lib
##init myInit *to be called once upon loading the lib
##libid complex c lib (ver 1.0)
##bias 30 *first function is always at an offset of -30 from lib base
* Here are all of the lib functions callable by an application (note that we
* don't specify regs for the passed parameters since our lib is made of C
* functions that expect args on the stack. We MUST use the -c option with
* LibTool when we make our glue or PRAGMAS as well as the lib startup code
***************************
* The first function returns a struct Window *
##ret struct Window *
MakeWindow()
* These functions return nothing
##ret void
PrintMsg(x,y,window,msg)
RemWindow(window)
##end