public bool _IsAppThemed() { try { DLLVERSIONINFO version = new DLLVERSIONINFO(); version.cbSize = Marshal.SizeOf(typeof(DLLVERSIONINFO)); int ret = DllGetVersion(ref version); if (version.dwMajorVersion >= 6) { return(true); } else { return(false); } } catch (Exception) { return(false); } }
private static extern int DllGetVersion(ref DLLVERSIONINFO s);