mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-04 20:04:21 +08:00
* stick_round_nub for COLLADA export * UTF-8 in feedback * display_scale_factor (ported from Incentive PyMOL) * dx map import: support "type float" and skewed delta
19 lines
279 B
C
19 lines
279 B
C
/*
|
|
* Copyright (c) Schrodinger, LLC.
|
|
*
|
|
* Basic file IO.
|
|
*/
|
|
|
|
#ifndef _H_File
|
|
#define _H_File
|
|
|
|
#ifdef _WIN32
|
|
FILE * pymol_fopen(const char * filename, const char * mode);
|
|
#else
|
|
#define pymol_fopen fopen
|
|
#endif
|
|
|
|
char * FileGetContents(const char *filename, long *size);
|
|
|
|
#endif
|