You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
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 */