diff options
Diffstat (limited to 'test/test_utils.h')
-rw-r--r-- | test/test_utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/test_utils.h b/test/test_utils.h index aca3376..7dc6e6e 100644 --- a/test/test_utils.h +++ b/test/test_utils.h @@ -14,8 +14,11 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#define __STDC_FORMAT_MACROS 1 + #include "pugl/pugl.h" +#include <inttypes.h> #include <stdarg.h> #include <stdbool.h> #include <stdint.h> @@ -118,6 +121,11 @@ printEvent(const PuglEvent* event, const char* prefix, const bool verbose) return PRINT("%sFocus out%s\n", prefix, event->focus.grab ? " (ungrab)" : ""); + case PUGL_CLIENT: + return PRINT("%sClient %" PRIXPTR " %" PRIXPTR "\n", + prefix, + event->client.data1, + event->client.data2); default: break; } |