mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-31 17:07:39 +00:00
include: Removed ::
from symbol names in comments.
This isn't C++ code, so there's no need to append global symbols with two colons. It looks ugly. I _did_ leave them for actual C++ things in WinRT-specific comments and other places, like a reference to a Perl class thing. Also, even though it's not valid C, it's a useful expression to say `StructType::SpecificField`, so I left those alone, too.
This commit is contained in:
parent
10ab623d43
commit
665ff8c5f6
7 changed files with 62 additions and 62 deletions
|
@ -56,14 +56,14 @@ typedef Uint32 SDL_KeyboardID;
|
|||
* The SDL keysym structure, used in key events.
|
||||
*
|
||||
* If you are looking for translated character input, see the
|
||||
* ::SDL_EVENT_TEXT_INPUT event.
|
||||
* SDL_EVENT_TEXT_INPUT event.
|
||||
*
|
||||
* \since This struct is available since SDL 3.0.0.
|
||||
*/
|
||||
typedef struct SDL_Keysym
|
||||
{
|
||||
SDL_Scancode scancode; /**< SDL physical key code - see ::SDL_Scancode for details */
|
||||
SDL_Keycode sym; /**< SDL virtual key code - see ::SDL_Keycode for details */
|
||||
SDL_Scancode scancode; /**< SDL physical key code - see SDL_Scancode for details */
|
||||
SDL_Keycode sym; /**< SDL virtual key code - see SDL_Keycode for details */
|
||||
SDL_Keymod mod; /**< current key modifiers */
|
||||
Uint16 unused;
|
||||
} SDL_Keysym;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue