1234567891011121314151617 |
- #pragma once
- #include <cstdint>
- namespace NYT {
- ////////////////////////////////////////////////////////////////////////////////
- int GetTestVariable1();
- void SetTestVariable1(int val);
- int GetTlsVariable();
- void SetTlsVariable(int val);
- ////////////////////////////////////////////////////////////////////////////////
- } // namespace NYT
|