DYT/Tool/matlab/include/soc/StreamingProfilerTgtAppSvc/StreamingProfilerTgtAppSvcCIntrf.h
2024-11-22 23:19:31 +08:00

23 lines
625 B
C

/* Copyright 2017 The MathWorks, Inc. */
#ifndef StreamingProfilerTgtAppSvcCInterf_h
#define StreamingProfilerTgtAppSvcCInterf_h
#include "StreamingProfilerTgtAppSvc_dll.hpp"
#include <stddef.h>
#if defined(_MSC_VER) && (_MSC_VER < 1600)
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#elif defined(__LCC__)
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#else
#include <stdint.h>
#endif
STREAMINGPROFILERTGTAPPSVC_API_C void uploadProfileData(const void *aTaskID, const void *aCoreID, const void *aTimerValue);
STREAMINGPROFILERTGTAPPSVC_API_C void initializeProfilingAppSvc();
#endif