Files
pymol-open-source/layer0/File.h
Thomas Holder 4bbe42513c stick_round_nub, UTF-8, display_scale_factor, ...
* 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
2018-02-28 13:16:16 +00:00

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