winversion.h 235 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #pragma once // winversion.h // 9/5/2014 jichi #ifdef _MSC_VER # include <cstddef> // for wchar_t #endif // _MSC_VER namespace WinVersion { bool queryFileVersion(const wchar_t *path, int ver[4]); } // namespace WinVersion // EOF