30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
/////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// file: Result_CCA.h
|
|
// //
|
|
/////////////////////////////////////////////////////////////////////
|
|
// //
|
|
// Copyright (c) 2024 Acroname Inc. - All Rights Reserved //
|
|
// //
|
|
// This file is part of the BrainStem release. See the license.txt //
|
|
// file included with this package or go to //
|
|
// https://acroname.com/software/brainstem-development-kit //
|
|
// for full license details. //
|
|
/////////////////////////////////////////////////////////////////////
|
|
#ifndef __RESULT_CCA_H__
|
|
#define __RESULT_CCA_H__
|
|
|
|
#ifdef CCA_PACK
|
|
#pragma pack(push, CCA_PACK)
|
|
#endif
|
|
//Result Structure
|
|
struct Result {
|
|
int value;
|
|
int error;
|
|
};
|
|
#ifdef CCA_PACK
|
|
#pragma pack(pop)
|
|
#endif
|
|
|
|
#endif //__RESULT_CCA_H__
|