home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / libtool_393.lzh / LibTool / CComplex / ComplexC.fd < prev    next >
Text File  |  1990-10-28  |  1KB  |  23 lines

  1. ##base ComplexBase *the name of our base used by C glue code and C PRAGMAS
  2. ##name complex     *the name of our library (i.e. simple.library)
  3. ##vers 1           *version #
  4. ##revs 0           *revision #
  5. ##open OpenUp      *to be called for each app that opens the lib
  6. ##clos CloseUp     *to be called for each app that closes the lib
  7. ##init myInit      *to be called once upon loading the lib
  8. ##libid complex c lib (ver 1.0)
  9. ##bias 30         *first function is always at an offset of -30 from lib base
  10. * Here are all of the lib functions callable by an application (note that we
  11. * don't specify regs for the passed parameters since our lib is made of C
  12. * functions that expect args on the stack. We MUST use the -c option with
  13. * LibTool when we make our glue or PRAGMAS as well as the lib startup code
  14. ***************************
  15. * The first function returns a struct Window *
  16. ##ret struct Window *
  17. MakeWindow()
  18. * These functions return nothing
  19. ##ret void
  20. PrintMsg(x,y,window,msg)
  21. RemWindow(window)
  22. ##end
  23.