#pragma once #include "stdafx.h" enum enumStatusType { Status, Conf, Warn, Error }; enum enumValueType { bool, float, int, string }; struct DeviceStatus { bool bReadOnly; enumStatusType Type; wchar_t *strName; wchar_t *strGroup; wchar_t *strValue; enumValueType ValueType; };