1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-22 19:23:31 +00:00

Fixed HECI linker issue

This commit is contained in:
Bryan Roe
2019-12-23 10:46:57 -08:00
parent d0edd23fd4
commit 235ef4ab21
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ char exeMeshPolicyGuid[] = { 0xB9, 0x96, 0x01, 0x58, 0x80, 0x54, 0x4A, 0x19, 0xB
#define DEFAULT_IDLE_TIMEOUT 120 #define DEFAULT_IDLE_TIMEOUT 120
#define KVM_IPC_SOCKET "\xFF_KVM_IPC_SOCKET" #define KVM_IPC_SOCKET "\xFF_KVM_IPC_SOCKET"
extern int ILibDuktape_HECI_Debug; int ILibDuktape_HECI_Debug = 0;
#ifdef _POSIX #ifdef _POSIX
extern char **environ; extern char **environ;

View File

@@ -155,7 +155,7 @@ typedef struct HECI_chainLink
void ILibDuktape_HECI_Push(duk_context *ctx, void *chain); void ILibDuktape_HECI_Push(duk_context *ctx, void *chain);
ILibTransport_DoneState ILibDuktape_HECI_Session_WriteHandler_Process(ILibDuktape_HECI_Session *session); ILibTransport_DoneState ILibDuktape_HECI_Session_WriteHandler_Process(ILibDuktape_HECI_Session *session);
int ILibDuktape_HECI_Debug = 0; extern int ILibDuktape_HECI_Debug;
#ifdef WIN32 #ifdef WIN32
HANDLE ILibDuktape_HECI_windowsInit() HANDLE ILibDuktape_HECI_windowsInit()