Files
pymol-open-source/layer2/MolV3000.h
2021-08-20 11:24:10 -04:00

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)
;