/** * @file kmdw_status.h * @brief status code * * @copyright Copyright (c) 2020 Kneron Inc. All rights reserved. */ #ifndef __KMDW_STATUS_H__ #define __KMDW_STATUS_H__ /** * @brief enum for status code */ typedef enum { KMDW_STATUS_OK = 0, /**< mdw status OK */ KMDW_STATUS_ERROR, /**< mdw status error */ } kmdw_status_t; #endif /* __KMDW_STATUS_H__ */