logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_SetWindowsMessageHook - Set a callback for every Windows message, run before TranslateMessage().

Availability

       This function is available since SDL 3.2.0.

Description

       The  callback  may  modify  the  message,  and  should  return  true if the message should continue to be
       processed, or false to prevent further processing.

Function Parameters

callback
              the SDL_WindowsMessageHook function to call.

       userdata
              a pointer to pass to every iteration of callback.

Name

       SDL_SetWindowsMessageHook - Set a callback for every Windows message, run before TranslateMessage().

See Also

SDL_WindowsMessageHook(3type), SDL_HINT_WINDOWS_ENABLE_MESSAGELOOP(3)

Simple Directmedia Layer                           SDL 3.2.20                       SDL_SetWindowsMessageHook(3)

Synopsis

#include<SDL3/SDL_system.h>voidSDL_SetWindowsMessageHook(SDL_WindowsMessageHookcallback,void*userdata);

See Also