This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/fusion360/usr/Include/Core/sharedStructs.h
2022-10-15 19:16:08 +02:00

30 lines
367 B
C

#include "CKAll.h"
#include "VSLManagerSDK.h"
enum vtEventState
{
EEVT_STARTED,
EEVT_FINISHED
};
struct vtExternalEvent
{
unsigned long timeOfCreation;
char command[MAX_PATH];
char commandArg[MAX_PATH];
vtEventState state;
};
struct TSharedMemory {
vtExternalEvent event;
};
struct haptekMsg
{
XString command;
int k;
};