openpilot v0.9.6 release
date: 2024-01-12T10:13:37 master commit: ba792d576a49a0899b88a753fa1c52956bedf9e6
This commit is contained in:
48
third_party/snpe/include/SnpeUdo/UdoShared.h
vendored
Normal file
48
third_party/snpe/include/SnpeUdo/UdoShared.h
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
//==============================================================================
|
||||
//
|
||||
// Copyright (c) 2019-2021 Qualcomm Technologies, Inc.
|
||||
// All Rights Reserved.
|
||||
// Confidential and Proprietary - Qualcomm Technologies, Inc.
|
||||
//
|
||||
//==============================================================================
|
||||
|
||||
#ifndef SNPE_UDO_SHARED_H
|
||||
#define SNPE_UDO_SHARED_H
|
||||
|
||||
#include "SnpeUdo/UdoBase.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
/** @addtogroup c_plus_plus_apis C++
|
||||
@{ */
|
||||
|
||||
/**
|
||||
* @brief A function to return the various versions as they relate to the UDO
|
||||
* The function returns a struct containing the the following:
|
||||
* libVersion: the version of the implementation library compiled for the UDO. Set by user
|
||||
* apiVersion: the version of the UDO API used in compiling the implementation library.
|
||||
* Set by SNPE
|
||||
*
|
||||
* @param[in, out] version A pointer to Version struct of type SnpeUdo_LibVersion_t
|
||||
*
|
||||
* @return Error code
|
||||
*
|
||||
*/
|
||||
SnpeUdo_ErrorType_t
|
||||
SnpeUdo_getVersion (SnpeUdo_LibVersion_t** version);
|
||||
|
||||
typedef SnpeUdo_ErrorType_t
|
||||
(*SnpeUdo_GetVersionFunction_t) (SnpeUdo_LibVersion_t** version);
|
||||
|
||||
typedef SnpeUdo_GetVersionFunction_t Udo_GetVersionFunction_t;
|
||||
|
||||
#ifdef __cplusplus
|
||||
} // extern "C"
|
||||
#endif
|
||||
|
||||
/** @} */ /* end_addtogroup c_plus_plus_apis C++ */
|
||||
|
||||
#endif // SNPE_UDO_SHARED_H
|
||||
Reference in New Issue
Block a user