DeviceStatus_API.h 292 B

12345678910111213141516171819202122232425262728
  1. #pragma once
  2. #include "stdafx.h"
  3. enum enumStatusType
  4. {
  5. Status,
  6. Conf,
  7. Warn,
  8. Error
  9. };
  10. enum enumValueType
  11. {
  12. bool,
  13. float,
  14. int,
  15. string
  16. };
  17. struct DeviceStatus
  18. {
  19. bool bReadOnly;
  20. enumStatusType Type;
  21. wchar_t *strName;
  22. wchar_t *strGroup;
  23. wchar_t *strValue;
  24. enumValueType ValueType;
  25. };