| 123456789101112131415161718192021 |
- #ifndef IV_MSGUNIT_H
- #define IV_MSGUNIT_H
- #include <memory>
- namespace iv {
- struct msgunit
- {
- char mstrmsgname[256];
- int mnBufferSize = 10000;
- int mnBufferCount = 1;
- void * mpa = nullptr;
- std::shared_ptr<char> mpstrmsgdata;
- int mndatasize = 0;
- bool mbRefresh = false;
- bool mbImportant = false;
- int mnkeeptime = 100;
- };
- }
- #endif // IV_MSGUNIT_H
|