Exemplo n.º 1
0
 public static uint JHI_GetAppletProperty(IntPtr handle, string AppId, ref JVM_COMM_BUFFER pComm)
 {
     if (is64BitProcess)
     {
         return(JHI_GetAppletProperty64(handle, AppId, ref pComm));
     }
     else
     {
         return(JHI_GetAppletProperty32(handle, AppId, ref pComm));
     }
 }
Exemplo n.º 2
0
 public static uint JHI_SendAndRecv(IntPtr handle, string AppId, ref JVM_COMM_BUFFER pComm)
 {
     if (is64BitProcess)
     {
         return(JHI_SendAndRecv64(handle, AppId, ref pComm));
     }
     else
     {
         return(JHI_SendAndRecv32(handle, AppId, ref pComm));
     }
 }
Exemplo n.º 3
0
 private static extern uint JHI_SendAndRecv2_64(IntPtr handle, IntPtr SessionHandle, UInt32 nCommandId, ref JVM_COMM_BUFFER pComm, ref UInt32 pResponseCode);
Exemplo n.º 4
0
 public static uint JHI_SendAndRecv2(IntPtr handle, IntPtr SessionHandle, UInt32 nCommandId, ref JVM_COMM_BUFFER pComm, ref UInt32 pResponseCode)
 {
     if (is64BitProcess)
     {
         return(JHI_SendAndRecv2_64(handle, SessionHandle, nCommandId, ref pComm, ref pResponseCode));
     }
     else
     {
         return(JHI_SendAndRecv2_32(handle, SessionHandle, nCommandId, ref pComm, ref pResponseCode));
     }
 }
Exemplo n.º 5
0
 private static extern uint JHI_GetAppletProperty64(IntPtr handle, string AppId, ref JVM_COMM_BUFFER pComm);
Exemplo n.º 6
0
 private static extern uint JHI_SendAndRecv64(IntPtr handle, string AppId, ref JVM_COMM_BUFFER pComm);