21 lines
575 B
C
21 lines
575 B
C
/* 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
|