mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-03 19:54:24 +08:00
19 lines
327 B
C
19 lines
327 B
C
/*
|
|
* MOL/SDF V3000 input support for PyMOL.
|
|
*
|
|
* (c) Schrodinger, Inc.
|
|
*/
|
|
|
|
struct PyMOLGlobals;
|
|
struct AtomInfoType;
|
|
struct BondType;
|
|
|
|
const char * MOLV3000Parse(PyMOLGlobals * G,
|
|
const char * buffer,
|
|
AtomInfoType *& atInfo,
|
|
BondType *& bond,
|
|
float *& coord,
|
|
int & nAtom,
|
|
int & nBond)
|
|
;
|