1

私の問題は次のとおりです。私は C/C++ コードについてかなり初心者で、何かを間違って使用しているか、そこにある必要があるものを使用していないと感じています。dllコードが実行されるかどうかを確認するためにテストアプリケーションを作成しましたが。私はこれについて多くのことをグーグルで調べましたが、何も見つからないようです。さらに説明する必要がある場合は、お知らせください。これは私の最初の投稿ですところで、私はこのサイトを常に使用していますが、素晴らしいサイトです。

Java コードはエラーを返します:

Exception in thread "Thread-2" java.lang.UnsatisfiedLinkError: ghostclickerredux.GlobbyMouse.whatButton()I

以下のコードはすべて Java であり、実行可能なインターフェースを実装するクラスに含まれています。スレッドが開始され、残りが得られる限りループを実行します。gM.whatButton() 行にコメントすると、すべてが正常に機能します。

boolean recording = true;
do {
    if(xT != gM.getMouseX() || yT != gM.getMouseY()){
        xT = gM.getMouseX(); // This Works.
        yT = gM.getMouseY(); // This Works.
        System.out.println("Mouse X: " + xT + " Y: " + yT); // This Works.
        System.out.println(gM.whatButton()); // This throws me the error.
    }
} while (recording);

以下は、javah が作成したヘッダー ファイルです。

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class ghostclickerredux_GlobbyMouse */

#ifndef _Included_ghostclickerredux_GlobbyMouse
#define _Included_ghostclickerredux_GlobbyMouse
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     ghostclickerredux_GlobbyMouse
 * Method:    getMouseX
 * Signature: ()I
 */
JNIEXPORT jint JNICALL Java_ghostclickerredux_GlobbyMouse_getMouseX
  (JNIEnv *, jobject);

/*
 * Class:     ghostclickerredux_GlobbyMouse
 * Method:    getMouseY
 * Signature: ()I
 */
JNIEXPORT jint JNICALL Java_ghostclickerredux_GlobbyMouse_getMouseY
  (JNIEnv *, jobject);

/*
 * Class:     ghostclickerredux_GlobbyMouse
 * Method:    whatButton
 * Signature: ()I
 */
JNIEXPORT jint JNICALL Java_ghostclickerredux_GlobbyMouse_whatButton
  (JNIEnv *, jobject);

#ifdef __cplusplus
}
#endif
#endif

最後に CPP コード。

#include <cstdlib>
#include <iostream>
#include <windows.h>
#include <winuser.h>
#include "GlobbyMouse.h"

using namespace std;

int mouseX = 0;
int mouseY = 0;
POINT p;

void setMousePos() {
    if (GetCursorPos(&p)) {
        mouseX = p.x;
        mouseY = p.y;
    } else {
        cout << "Could not set mouse variables..." << endl;
    }
}

JNIEXPORT jint JNICALL Java_ghostclickerredux_GlobbyMouse_whatButton
(JNIEnv *, jobject) {
    if (GetAsyncKeyState(VK_LBUTTON) & 0x8000) {
        return 0;
    } else
        if (GetAsyncKeyState(VK_MBUTTON) & 0x8000) {
        return 1;
    } else
        if (GetAsyncKeyState(VK_RBUTTON) & 0x8000) {
        return 2;
    } else
        if (GetAsyncKeyState(VK_XBUTTON1) & 0x8000) {
        return 3;
    } else
        if (GetAsyncKeyState(VK_XBUTTON2) & 0x8000) {
        return 4;
    } else {
        return -1;
    }
}

JNIEXPORT jint JNICALL Java_ghostclickerredux_GlobbyMouse_getMouseX
(JNIEnv *, jobject) {
    setMousePos();
    return mouseX;
}

JNIEXPORT jint JNICALL Java_ghostclickerredux_GlobbyMouse_getMouseY
(JNIEnv *, jobject) {
    setMousePos();
    return mouseY;
}
4

0 に答える 0