#endif // GET_X_LPARAM
// get the current state of SHIFT/CTRL keys
-extern inline bool wxIsShiftDown()
+inline bool wxIsShiftDown()
{
return (::GetKeyState(VK_SHIFT) & 0x100) != 0;
}
-extern inline bool wxIsCtrlDown()
+inline bool wxIsCtrlDown()
{
return (::GetKeyState(VK_CONTROL) & 0x100) != 0;
}