代码搜索:Invoke

找到约 4,823 项符合「Invoke」的源代码

代码结果 4,823
www.eeworm.com/read/174538/5360762

c invoke.c

#include #ifdef _WIN32 #define PATH_SEPARATOR ';' #else /* UNIX */ #define PATH_SEPARATOR ':' #endif #define USER_CLASSPATH "." /* where Prog.class is */ main() { JNIEnv *env; JavaV
www.eeworm.com/read/172818/5381951

texi invoke.texi

@c This is part of the Radius manual. @c Copyright (C) 1999,2000,2001,2002,2003 Free Software Foundation, Inc. @c Written by Sergey Poznyakoff @c See file radius.texi for copying conditions. @comment
www.eeworm.com/read/171026/5400660

def invoke.def

LIBRARY invoke EXPORTS InvokeFunc
www.eeworm.com/read/171026/5400661

asm invoke.asm

e
www.eeworm.com/read/168845/5432146

hpp invoke.hpp

#if !defined(BOOST_PP_IS_ITERATING) // Copyright David Abrahams 2002. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http:/
www.eeworm.com/read/349092/3147859

js invoke.js

/* * This script demonstrates "invokeMBean" function. Instead * of using MXBean proxy or script wrapper object returned by * 'mbean' function, this file uses direct invoke on MBean. * * To use t
www.eeworm.com/read/343909/3213997

def invoke.def

LIBRARY invoke EXPORTS InvokeFunc
www.eeworm.com/read/343909/3213998

asm invoke.asm

; ######################################################################### ; Build this DLL from the batch file called BldDLL.bat ; ########################################################
www.eeworm.com/read/340665/3281803

java invoke.java

// Test to make sure the minimal invocation works. public class invoke { public static native int val (); static { System.out.println ("trying..."); System.loadLibrary ("invoke");
www.eeworm.com/read/340665/3281818

c invoke.c

#include JNIEXPORT jint JNICALL Java_invoke_val (JNIEnv *env, jclass klass) { return 23; }