Program Listing for File agility-sdk.h

Return to documentation for file (include\agility-sdk\agility-sdk.h)

/******************************************************************************
(c) Intel Corporation.

This software and the related documents are Intel copyrighted materials,
and your use of them is governed by the express license under which they
were provided to you ("License"). Unless the License provides otherwise,
you may not use, modify, copy, publish, distribute, disclose or transmit
this software or the related documents without Intel's prior written
permission.


 This software and the related documents are provided as is, with no express
or implied warranties, other than those that are expressly stated in the
License.

******************************************************************************/

#pragma once

#include <cinttypes>

#if defined(GPA_AGILITY_SDK_EXPORTS)
#define AGILITY_SDK_EXPORT __declspec(dllexport)
#else  // GPA_AGILITY_SDK_EXPORTS
#define AGILITY_SDK_EXPORT __declspec(dllimport)
#endif  // GPA_AGILITY_SDK_EXPORTS

namespace gpa {
namespace agility_sdk {

AGILITY_SDK_EXPORT void UpdateAgilitySDKVersion();

AGILITY_SDK_EXPORT void SetAgilitySDKPath(char const* path);

AGILITY_SDK_EXPORT char const* GetAgilitySDKPath();

AGILITY_SDK_EXPORT char const* GetAgilitySDKBasePath();

AGILITY_SDK_EXPORT void RegisterAgilitySDKSymbolExports(uint32_t* versionAddress, char const** pathAddress);

}  // namespace agility_sdk
}  // namespace gpa