1 /*   mlkludge.h
2 * ===========================================================================
3 *
4 *                            PUBLIC DOMAIN NOTICE
5 *            National Center for Biotechnology Information (NCBI)
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 do not place any restriction on its use or reproduction.
13 *  We would, however, appreciate having the NCBI and the author cited in
14 *  any work or product based on this material
15 *
16 *  Although all reasonable efforts have been taken to ensure the accuracy
17 *  and reliability of the software and data, the NLM and the U.S.
18 *  Government do not and cannot warrant the performance or results that
19 *  may be obtained by using this software or data. The NLM and the U.S.
20 *  Government disclaim all warranties, express or implied, including
21 *  warranties of performance, merchantability or fitness for any particular
22 *  purpose.
23 *
24 * ===========================================================================
25 *
26 * File Name:  mlkludge.h
27 *
28 * Author:  Jonathan Kans
29 *
30 * Version Creation Date:   1/30/07
31 *
32 * $Revision: 1.1 $
33 *
34 * File Description:
35 *
36 * Modifications:
37 * --------------------------------------------------------------------------
38 * Date     Name        Description of modification
39 * -------  ----------  -----------------------------------------------------
40 *
41 *
42 * ==========================================================================
43 */
44 
45 
46 #ifndef _MLKLUDGE_
47 #define _MLKLUDGE_
48 
49 #include <objpub.h>
50 #include <objpubme.h>
51 #include <objmdrs.h>
52 
53 /*
54 #define MlaRequestPtr Mla2RequestPtr
55 #define TitleMsgPtr TitleMsg2Ptr
56 #define TitleMsgListPtr TitleMsgList2Ptr
57 #define MlaBackPtr Mla2BackPtr
58 */
59 
60 #define MlaRequestFree Mla2RequestFree
61 #define MlaRequestAsnRead Mla22RequestAsnRead
62 #define MlaRequestAsnWrite Mla2RequestAsnWrite
63 
64 #define TitleMsgFree TitleMsg2Free
65 #define TitleMsgNew TitleMsg2New
66 #define TitleMsgAsnRead TitleMsg2AsnRead
67 #define TitleMsgAsnWrite TitleMsg2AsnWrite
68 
69 #define TitleMsgListFree TitleMsgList2Free
70 #define TitleMsgListNew TitleMsgList2New
71 #define TitleMsgListAsnRead TitleMsgList2AsnRead
72 #define TitleMsgListAsnWrite TitleMsgList2AsnWrite
73 
74 #define MlaBackFree Mla2BackFree
75 #define MlaBackAsnRead Mla2BackAsnRead
76 #define MlaBackAsnWrite Mla2BackAsnWrite
77 
78 #endif /* ndef _MLKLUDGE_ */
79 
80