mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
Fixed 64-bits warning in WindowImplWin32
This commit is contained in:
parent
9d68277442
commit
da9844b6c4
@ -225,12 +225,12 @@ private :
|
||||
////////////////////////////////////////////////////////////
|
||||
// Member data
|
||||
////////////////////////////////////////////////////////////
|
||||
HWND myHandle; ///< Win32 handle of the window
|
||||
long myCallback; ///< Stores the original event callback function of the control
|
||||
HCURSOR myCursor; ///< The system cursor to display into the window
|
||||
HICON myIcon; ///< Custom icon assigned to the window
|
||||
bool myKeyRepeatEnabled; ///< Automatic key-repeat state for keydown events
|
||||
bool myIsCursorIn; ///< Is the mouse cursor in the window's area ?
|
||||
HWND myHandle; ///< Win32 handle of the window
|
||||
LONG_PTR myCallback; ///< Stores the original event callback function of the control
|
||||
HCURSOR myCursor; ///< The system cursor to display into the window
|
||||
HICON myIcon; ///< Custom icon assigned to the window
|
||||
bool myKeyRepeatEnabled; ///< Automatic key-repeat state for keydown events
|
||||
bool myIsCursorIn; ///< Is the mouse cursor in the window's area ?
|
||||
};
|
||||
|
||||
} // namespace priv
|
||||
|
Loading…
Reference in New Issue
Block a user