1 /*   acccn3ds.c
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:  acccn3ds.c
27  *
28  * Author:  Jonathan Epstein
29  *
30  * Version Creation Date:   6/20/96
31  *
32  * File Description:
33  *       Stub file for CN3D functions (real functions in cn3d*.c)
34  *
35  * Modifications:
36  * --------------------------------------------------------------------------
37  * $Log: acccn3ds.c,v $
38  * Revision 6.2  1999/01/15 19:52:49  kans
39  * needed to add vibrant typedefs
40  *
41  * Revision 6.1  1999/01/15 19:41:32  kans
42  * Cn3DWin_Entrez stub needed new parameters
43  *
44  * Revision 6.0  1997/08/25 18:12:23  madden
45  * Revision changed to 6.0
46  *
47  * Revision 1.4  1997/07/29 21:17:04  vakatov
48  * [WIN32,DLL]  Made Cn3D's stubbed functions be DLL-exportable
49  *
50  * Revision 1.3  1997/03/20 19:04:37  vakatov
51  * Cn3DWin --> Cn3DWin_Entrez
52  *
53  * Revision 1.2  1996/07/29  21:13:42  epstein
54  * add stub for function Cn3D_SetQueryCallback()
55  *
56  * Revision 1.1  1996/06/20  19:57:11  epstein
57  * Initial revision
58  *
59  * ==========================================================================
60  */
61 
62 #include <accentr.h>
63 #ifdef Biostruc_supported
64 #include <mmdbapi.h>
65 #endif
66 
Cn3D_ResetActiveStrucProc(void)67 NLM_EXTERN void LIBCALL Cn3D_ResetActiveStrucProc(void)
68 {
69 }
70 
Cn3D_Redraw(Boolean New)71 NLM_EXTERN void LIBCALL Cn3D_Redraw(Boolean New)
72 {
73 }
74 
Cn3D_SetQueryCallback(BeepHook queryFunc,VoidPtr w)75 NLM_EXTERN void LIBCALL Cn3D_SetQueryCallback(BeepHook queryFunc, VoidPtr w)
76 {
77 }
78 
79 typedef  struct  Nlm_item {
80   Nlm_VoidPtr  dummy;
81 } HNDL Nlm_IteM;
82 
83 typedef  void  (*Nlm_ItmActnProc) PROTO((Nlm_IteM));
84 
Cn3DWin_Entrez(Nlm_ItmActnProc netconfig,Boolean usingEntrez)85 NLM_EXTERN Handle LIBCALL Cn3DWin_Entrez(Nlm_ItmActnProc netconfig, Boolean usingEntrez)
86 {
87   return NULL;
88 }
89