// VersionString.h // // Gets the version from the target file. // // lib files: version.lib // // Revision Log // // Date Who SAR Notes // ========== === ======= ===================================== // 1998-11-21 mph Initial coding by Mark Henri of // MPH Software - markhenri@attbi.com // #ifndef VERSIONSTRING_H #define VERSIONSTRING_H #include bool GetVersionString(const char * pFilePath, char * pVersion, int uMaxVersionLen); std::string GetVersionString(const char * pFilePath); #endif