ReadConfig.hpp
Upload User: romrleung
Upload Date: 2022-05-23
Package Size: 18897k
Code Size: 0k
Category:

MySQL

Development Platform:

Visual C++

  1. #ifndef READ_CONFIG_HPP
  2. #define READ_CONFIG_HPP
  3. /**
  4.  */
  5. class ReadConfigReq {
  6. public:
  7.   STATIC_CONST( SignalLength = 3 );
  8.   
  9.   Uint32 senderRef;
  10.   Uint32 senderData;
  11.   Uint32 noOfParameters; // 0 Means read all relevant for block
  12.   Uint32 parameters[1];  // see mgmapi_config_parameters.h
  13. };
  14. class ReadConfigConf {
  15. public:
  16.   STATIC_CONST( SignalLength = 2 );
  17.   Uint32 senderRef;
  18.   Uint32 senderData;
  19. };
  20. #endif