home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- *
- *
- * NCSA HDF version 3.2r2
- * October 30, 1992
- *
- * NCSA HDF Version 3.2 source code and documentation are in the public
- * domain. Specifically, we give to the public domain all rights for future
- * licensing of the source code, all resale rights, and all publishing rights.
- *
- * We ask, but do not require, that the following message be included in all
- * derived works:
- *
- * Portions developed at the National Center for Supercomputing Applications at
- * the University of Illinois at Urbana-Champaign, in collaboration with the
- * Information Technology Institute of Singapore.
- *
- * THE UNIVERSITY OF ILLINOIS GIVES NO WARRANTY, EXPRESSED OR IMPLIED, FOR THE
- * SOFTWARE AND/OR DOCUMENTATION PROVIDED, INCLUDING, WITHOUT LIMITATION,
- * WARRANTY OF MERCHANTABILITY AND WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE
- *
- ****************************************************************************
- */
-
- #ifdef RCSID
- static char RcsId[] = "@(#)$Revision: 1.4 $";
- #endif
- /*
- $Header: /hdf/hdf/v3.2r2/test/RCS/tlinkage.c,v 1.4 1992/10/23 00:41:46 koziol beta koziol $
-
- $Log: tlinkage.c,v $
- * Revision 1.4 1992/10/23 00:41:46 koziol
- * Removed calls to HIlock and HIunlock because they were made static in hfile.c
- *
- * Revision 1.3 1992/07/09 16:08:00 chouck
- * Minor fix to a few routine names for VMS
- *
- * Revision 1.2 1992/05/29 19:23:00 chouck
- * Modified to reflect current names
- *
- * Revision 1.1 1992/02/10 20:59:34 chouck
- * Initial revision
- *
- */
-
- /*
- As the VMS linker ignores case, some function names have
- to be redefined. BUT don't just include hdf.h as then
- we will get all the prototypes too.
- */
- #ifdef VMS
- #include "dfivms.h"
- #endif
-
- main()
- {
- puts("This program is for checking the linkage of functions.");
- puts("Should not be run.");
- exit(1);
-
- HEstring();
- HEpush();
- HEprint();
- HEvalue();
-
- Hopen();
- Hclose();
- Hstartread();
- Hnextread();
- Hinquire();
- Hstartwrite();
- Hseek();
- Hread();
- Hwrite();
- Hendaccess();
- Hgetelement();
- Hputelement();
- Hlength();
- Hoffset();
- Hdupdd();
- HIupdate_dd();
- Hdeldd();
- Hnewref();
- Hishdf();
- Hsync();
- HIgetspinfo();
- HDvalidfid();
- HDerr();
- Hnumber();
-
- HLcreate();
- HXcreate();
-
- DFPgetpal();
- DFPputpal();
- DFPaddpal();
- DFPnpals();
- DFPreadref();
- DFPwriteref();
- DFPrestart();
- DFPlastref();
-
- DFR8getdims();
- DFR8getimage();
- DFR8setpalette();
- DFR8putimage();
- DFR8addimage();
- DFR8nimages();
- DFR8readref();
- DFR8writeref();
- DFR8restart();
- DFR8lastref();
-
- DF24getdims();
- DF24reqil();
- DF24getimage();
- DF24setdims();
- DF24setil();
- DF24restart();
- DF24addimage();
- DF24putimage();
- DF24readref();
- }
-
-