1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-04-03 23:06:42 +00:00
openmw/tools/fileops.hpp
2010-06-24 21:24:16 -04:00

13 lines
243 B
C++

#ifndef __FILEOPS_H_
#define __FILEOPS_H_
#include <string>
/// Check if a given path is an existing file (not a directory)
bool isFile(const char *name);
#if OGRE_PLATFORM == OGRE_PLATFORM_APPLE
std::string macBundlePath();
#endif
#endif