我正在尝试制作一个 .exe 来运行我的 Java 应用程序。我有以下代码:
迷宫.c
#include <windows.h>
#include <stdio.h>
#include <jni.h>
#define MAIN_CLASS "game/main/Game"
__declspec(dllexport) __stdcall int run(){
JNIEnv* env;
JavaVM* jvm;
JavaVMInitArgs vmargs;
JavaVMOption options[1];
jint rc;
jclass class;
jmethodID mainID;
vmargs.version = 0x00010002;
options[0].optionString = "-Djava.class.path=.";
vmargs.options = options;
vmargs.nOptions = 1;
rc = JNI_CreateJavaVM(&jvm, (void**) &env, &vmargs);
if(rc < 0){
printf("Failed creating JVM");
return 1;
}
class = (*env)->FindClass(env, MAIN_CLASS);
if(class == 0){
printf("Failed finding the main class");
return 1;
}
mainID = (*env)->GetStaticMethodID(env, class, "main", "([Ljava/lang/String;)V");
if(mainID == 0){
printf("Failed finding the main method");
return 1;
}
(*env)->CallStaticVoidMethod(env, class, mainID, 0);
(*jvm)->DestroyJavaVM(jvm);
return 0;
}
然后编译为 OpenLabyrinth.dll
我有一个程序试图运行 dll
开始.c
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <direct.h>
typedef int (__stdcall* function)();
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow){
HINSTANCE hGetProcIDDLL = LoadLibrary("OpenLabyrinth.dll");
if(!hGetProcIDDLL){
printf("Couldn't find the library: %d", GetLastError());
return 1;
}
function run = (function) GetProcAddress(hGetProcIDDLL, "run");
if(!run){
printf("Couldn't find the function: %d", GetLastError());
return 1;
}
run();
return 0;
}
后来编译成Labyrinth.exe
运行我的应用程序时,我得到 LoadLibrary 错误代码 126。我尝试用谷歌搜索错误 126,发现我的 .dll 需要依赖项。
检查它Process Monitor
我发现我的程序执行的每个操作都是成功的,但它返回代码 1。
但是,当我使用它进行检查时,Dependency Walker
我显示了很多丢失的文件。他们都是API-MS-WIN-CORE-something
或者EXT-MS-WIN-something
。
什么应该导致错误?