--- old/src/java.desktop/windows/native/libawt/windows/awt_Robot.h 2017-08-22 13:53:17.560384200 +0530 +++ new/src/java.desktop/windows/native/libawt/windows/awt_Robot.h 2017-08-22 13:53:16.727478900 +0530 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1998, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -31,6 +31,40 @@ #include "sun_awt_windows_WRobotPeer.h" #include "jlong.h" +namespace NSWinInput { + typedef struct tagHARDWAREINPUT { + DWORD uMsg; + WORD wParamL; + WORD wParamH; + } HARDWAREINPUT; + + typedef struct tagMOUSEINPUT { + LONG dx; + LONG dy; + DWORD mouseData; + DWORD dwFlags; + DWORD time; + ULONG_PTR dwExtraInfo; + } MOUSEINPUT; + + typedef struct tagKEYBDINPUT { + WORD wVk; + WORD wScan; + DWORD dwFlags; + DWORD time; + ULONG_PTR dwExtraInfo; + } KEYBDINPUT; + + typedef struct tagINPUT { + DWORD type; + union { + MOUSEINPUT mi; + KEYBDINPUT ki; + HARDWAREINPUT hi; + }; + } INPUT; +} + class AwtRobot : public AwtObject { public: @@ -52,6 +86,7 @@ private: void DoKeyEvent( jint jkey, DWORD dwFlags ); + UINT HandleUnicodeKeys(jint key, DWORD dwFlags); static jint WinToJavaPixel(USHORT r, USHORT g, USHORT b); };