mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 12:51: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
|
// Member data
|
||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
HWND myHandle; ///< Win32 handle of the window
|
HWND myHandle; ///< Win32 handle of the window
|
||||||
long myCallback; ///< Stores the original event callback function of the control
|
LONG_PTR myCallback; ///< Stores the original event callback function of the control
|
||||||
HCURSOR myCursor; ///< The system cursor to display into the window
|
HCURSOR myCursor; ///< The system cursor to display into the window
|
||||||
HICON myIcon; ///< Custom icon assigned to the window
|
HICON myIcon; ///< Custom icon assigned to the window
|
||||||
bool myKeyRepeatEnabled; ///< Automatic key-repeat state for keydown events
|
bool myKeyRepeatEnabled; ///< Automatic key-repeat state for keydown events
|
||||||
bool myIsCursorIn; ///< Is the mouse cursor in the window's area ?
|
bool myIsCursorIn; ///< Is the mouse cursor in the window's area ?
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace priv
|
} // namespace priv
|
||||||
|
Loading…
Reference in New Issue
Block a user