< prev index next >

src/jdk.accessibility/windows/native/include/bridge/AccessBridgeCalls.h

Print this page


   1 /*
   2  * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.












  24  */
  25 
  26 /*
  27  * Wrapper functions around calls to the AccessBridge DLL
  28  */
  29 
  30 #include <windows.h>
  31 #include <jni.h>
  32 #include "AccessBridgeCallbacks.h"
  33 #include "AccessBridgePackages.h"
  34 
  35 #ifdef __cplusplus
  36 extern "C" {
  37 #endif
  38 
  39 #define null NULL
  40 
  41     typedef JOBJECT64 AccessibleContext;
  42     typedef JOBJECT64 AccessibleText;
  43     typedef JOBJECT64 AccessibleValue;


   1 /*
   2  * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /* Note: In addition to this header file AccessBridgeCalls.c must be compiled and
  27  * linked to your application.  AccessBridgeCalls.c implements the Java Access
  28  * Bridge API and also hides the complexities associated with interfacing to the
  29  * associated Java Access Bridge DLL which is installed when Java is installed.
  30  *
  31  * AccessBridgeCalls.c is available for download from the OpenJDK repository using
  32  * the following link:
  33  *
  34  * http://hg.openjdk.java.net/jdk9/jdk9/jdk/raw-file/tip/src/jdk.accessibility/windows/native/bridge/AccessBridgeCalls.c
  35  *
  36  */
  37 
  38 /*
  39  * Wrapper functions around calls to the AccessBridge DLL
  40  */
  41 
  42 #include <windows.h>
  43 #include <jni.h>
  44 #include "AccessBridgeCallbacks.h"
  45 #include "AccessBridgePackages.h"
  46 
  47 #ifdef __cplusplus
  48 extern "C" {
  49 #endif
  50 
  51 #define null NULL
  52 
  53     typedef JOBJECT64 AccessibleContext;
  54     typedef JOBJECT64 AccessibleText;
  55     typedef JOBJECT64 AccessibleValue;


< prev index next >