Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

helper.h 204 B

1234567891011
  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 */