os-core/kernel/leos/types.h

26 lines
627 B
C
Raw Normal View History

2019-05-29 11:10:01 +02:00
/******************************************************************************
*
* Copyright (c) 2017-2019 by Löwenware Ltd
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
2019-12-01 22:57:02 +01:00
* @file types.h
2019-05-29 11:10:01 +02:00
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
2019-12-01 22:57:02 +01:00
#ifndef TYPES_H_BC3DA9C0_C9EE_4853_B5F5_EAA4B801664C
#define TYPES_H_BC3DA9C0_C9EE_4853_B5F5_EAA4B801664C
2019-05-29 11:10:01 +02:00
2020-01-15 10:56:04 +01:00
#include <stdbool.h>
#include <stdint.h>
2019-05-29 11:10:01 +02:00
2020-01-15 10:56:04 +01:00
typedef int RetCode;
typedef unsigned int PID;
2019-05-29 11:10:01 +02:00
2019-12-01 22:57:02 +01:00
#endif /* !TYPES_H */