Advertisement
mattparks5855

C++ Input

May 20th, 2018
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. #ifndef TEST_H_
  2. #define TEST_H_ 1
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. typedef enum TestState {
  9.     TEST_STATE_A = 0,
  10.     TEST_STATE_B = 1,
  11.     TEST_STATE_C = 2,
  12. } TestState;
  13.  
  14. typedef struct TestStateCreateInfo {
  15.     int                                  testStateCount;
  16.     const TestState*                     pTestStates;
  17. } TestStateCreateInfo;
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement