mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-15 09:18:27 +00:00
wikiheaders: Defines directly following a non-struct typedef are documented.
The idea is that if you have a `typedef Uint32 MyFlags` that has a bunch of defines that are meant to be bitflags, you can pack them into the same wiki page automatically. This only works with `typedef`s that are _not_ struct/union/enums, and it only pulls in `#define` lines that immediately follow the typedef line. Even a blank line or a comment will signal to stop including lines for this page!
This commit is contained in:
parent
47ff4addd4
commit
2fb024ab8e
3 changed files with 15 additions and 6 deletions
|
@ -47,13 +47,8 @@
|
|||
* \sa SDL_KeyCode
|
||||
*/
|
||||
typedef Sint32 SDL_Keycode;
|
||||
|
||||
#define SDLK_SCANCODE_MASK (1<<30)
|
||||
#define SDL_SCANCODE_TO_KEYCODE(X) (X | SDLK_SCANCODE_MASK)
|
||||
|
||||
/**
|
||||
* A subset of possible virtual key values.
|
||||
*/
|
||||
#define SDLK_UNKNOWN 0
|
||||
#define SDLK_RETURN '\r'
|
||||
#define SDLK_ESCAPE '\x1B'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue