Initial commit

This commit is contained in:
2026-06-12 22:37:02 +08:00
commit 94e46587da
77 changed files with 168188 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
//---------------------------------------------------------------------------
#ifndef BacJSThreadH
#define BacJSThreadH
#include "BaseThread.h"
//---------------------------------------------------------------------------
// Êý¾Ý´¦ÀíÏß³Ì
#define JS_OP_CHECKCEF 0
#define JS_OP_WSHANDLE0 1
#define JS_OP_WSHANDLE1 2
#define JS_OP_WSHANDLE2 3
#define JS_OP_WSHANDLE3 4
#define JS_OP_GAMEON 5
//#define JS_OP_TOMULTI 3
class TJSHandleThread : public TBaseThread
{
private:
int __fastcall CheckCEF();
int __fastcall GetWSHandle();
int __fastcall GameOn();
public:
int m_op;
String m_sRet;
__fastcall TJSHandleThread(int iOp);
// __fastcall ~TJSHandleThread();
void __fastcall Execute();
};
#endif