#ifndef HELPER_H #define HELPER_H #include extern HWND hwnd; inline void showMessage(const char* msg) { MessageBox(hwnd, msg, "TextSuiteExample Error", MB_OK); }; #endif /* HELPER_H */