您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

11 行
204 B

  1. #ifndef HELPER_H
  2. #define HELPER_H
  3. #include <windows.h>
  4. extern HWND hwnd;
  5. inline void showMessage(const char* msg)
  6. { MessageBox(hwnd, msg, "TextSuiteExample Error", MB_OK); };
  7. #endif /* HELPER_H */