|
NCBI Home IEB Home C Toolkit docs C++ Toolkit source browser C Toolkit source browser (2) |
NCBI C Toolkit Cross ReferenceC/asnlib/asnio.h |
source navigation diff markup identifier search freetext search file search |
1 /* asnio.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: asnio.h
27 *
28 * Author: James Ostell
29 *
30 * Version Creation Date: 1/1/91
31 *
32 * $Revision: 6.1 $
33 *
34 * File Description:
35 * Typedefs and prototypes used internally by asnio.c
36 *
37 * Modifications:
38 * --------------------------------------------------------------------------
39 * $Log: asnio.h,v $
40 * Revision 6.1 1999/07/28 21:01:48 vakatov
41 * [__cplusplus] Added `extern "C"'
42 *
43 * Revision 5.1 1996/12/03 21:43:48 vakatov
44 * Adopted for 32-bit MS-Windows DLLs
45 * ==========================================================================
46 */
47
48 #ifndef _ASNIO_
49 #define _ASNIO_
50
51 #undef NLM_EXTERN
52 #ifdef NLM_IMPORT
53 #define NLM_EXTERN NLM_IMPORT
54 #else
55 #define NLM_EXTERN extern
56 #endif
57
58 #ifdef __cplusplus
59 extern "C" {
60 #endif
61
62
63 /*****************************************************************************
64 *
65 * prototypes
66 * also in asngen.h
67 *
68 *****************************************************************************/
69 NLM_EXTERN CharPtr AsnIoGets PROTO((AsnIoPtr aip));
70 NLM_EXTERN void AsnIoPuts PROTO((AsnIoPtr aip));
71 NLM_EXTERN Int2 AsnIoReadBlock PROTO((AsnIoPtr aip));
72 NLM_EXTERN Int2 AsnIoWriteBlock PROTO((AsnIoPtr aip));
73 NLM_EXTERN void CDECL AsnIoErrorMsg VPROTO((AsnIoPtr aip, int errcode, ...));
74
75
76 #ifdef __cplusplus
77 }
78 #endif
79
80 #undef NLM_EXTERN
81 #ifdef NLM_EXPORT
82 #define NLM_EXTERN NLM_EXPORT
83 #else
84 #define NLM_EXTERN
85 #endif
86
87 #endif
88 |
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more information. |