|
NCBI Home IEB Home C Toolkit docs C++ Toolkit source browser C Toolkit source browser (2) |
NCBI C Toolkit Cross ReferenceC/object/objall.h |
source navigation diff markup identifier search freetext search file search |
1 /* objall.h
2 * ===========================================================================
3 *
4 * PUBLIC DOMAIN NOTICE
5 * National Center for Biotechnology Information
6 *
7 * This software/database is a "United States Government Work" under the
8 * terms of the United States Copyright Act. It was written as part of
9 * the author's official duties as a United States Government employee and
10 * thus cannot be copyrighted. This software/database is freely available
11 * to the public for use. The National Library of Medicine and the U.S.
12 * Government have not placed any restriction on its use or reproduction.
13 *
14 * Although all reasonable efforts have been taken to ensure the accuracy
15 * and reliability of the software and data, the NLM and the U.S.
16 * Government do not and cannot warrant the performance or results that
17 * may be obtained by using this software or data. The NLM and the U.S.
18 * Government disclaim all warranties, express or implied, including
19 * warranties of performance, merchantability or fitness for any particular
20 * purpose.
21 *
22 * Please cite the author in any work or product based on this material.
23 *
24 * ===========================================================================
25 *
26 * File Name: objall.h
27 *
28 * Author: James Ostell
29 *
30 * Version Creation Date: 9/19/91
31 *
32 * $Revision: 6.0 $
33 *
34 * File Description: Object manager interface for "ALL" modules
35 *
36 * Modifications:
37 * --------------------------------------------------------------------------
38 * Date Name Description of modification
39 * ------- ---------- -----------------------------------------------------
40 *
41 * $Log: objall.h,v $
42 * Revision 6.0 1997/08/25 18:49:17 madden
43 * Revision changed to 6.0
44 *
45 * Revision 4.1 1997/06/19 18:40:44 vakatov
46 * [WIN32,MSVC++] Adopted for the "NCBIOBJ.LIB" DLL'ization
47 *
48 * Revision 4.0 1995/07/26 13:48:06 ostell
49 * force revision to 4.0
50 *
51 * Revision 3.1 1995/05/15 21:22:00 ostell
52 * added Log line
53 *
54 *
55 *
56 *
57 * ==========================================================================
58 */
59
60 #ifndef _NCBI_All_
61 #define _NCBI_All_
62
63 #ifndef _NCBI_Seqset_
64 #include <objsset.h>
65 #endif
66
67 #undef NLM_EXTERN
68 #ifdef NLM_IMPORT
69 #define NLM_EXTERN NLM_IMPORT
70 #else
71 #define NLM_EXTERN extern
72 #endif
73
74 #ifdef __cplusplus
75 extern "C" {
76 #endif
77
78 /*****************************************************************************
79 *
80 * loader
81 * just loads most linked module
82 *
83 *****************************************************************************/
84 NLM_EXTERN AsnModulePtr LIBCALL AllObjLoad PROTO((void));
85
86 #ifdef __cplusplus
87 }
88 #endif
89
90 #undef NLM_EXTERN
91 #ifdef NLM_EXPORT
92 #define NLM_EXTERN NLM_EXPORT
93 #else
94 #define NLM_EXTERN
95 #endif
96
97 #endif
98 |
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |