No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

11 líneas
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 */