DYT/Tool/matlab/include/ToAsyncQueueTgtAppSvc/ToAsyncQueueTgtAppSvcCIntrf.h

21 lines
575 B
C
Raw Permalink Normal View History

2024-11-22 15:19:31 +00:00
/* Copyright 2013-2015 MathWorks, Inc. */
#ifndef ToAsyncQueueTgtAppSvcCIntrf_h
#define ToAsyncQueueTgtAppSvcCIntrf_h
#include "ToAsyncQueueTgtAppSvc_dll.hpp"
#if defined(_MSC_VER) && (_MSC_VER < 1600)
typedef unsigned int uint32_t;
#elif defined(__LCC__)
typedef unsigned int uint32_t;
#else
#include <stdint.h>
#endif
TOASYNCQUEUETGTAPPSVC_API_C int startToAsyncQueueTgtAppSvc();
TOASYNCQUEUETGTAPPSVC_API_C int terminateToAsyncQueueTgtAppSvc();
TOASYNCQUEUETGTAPPSVC_API_C void sendToAsyncQueueTgtAppSvc(uint32_t id, double time, void *data, uint32_t size);
#endif