12345678910111213141516171819202122232425262728 |
- #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;
- };
|