pinebuds/services/ble_profiles/gfps/gfps_provider/api/gfps_provider_errors.h

14 lines
248 B
C
Raw Normal View History

2022-08-15 04:20:27 -05:00
#ifndef _GFPS_PROVIDER_ERRORS_H_
#define _GFPS_PROVIDER_ERRORS_H_
enum{
GFPS_SUCCESS,
GFPS_ERROR_EXEC_FAIL,
GFPS_ERROR_NULL,
GFPS_ERROR_INVALID_PARAM,
GFPS_ERROR_DATA_SIZE
};
#define Gfps_CheckParm(code, exp) if (!(exp)) return (code)
#endif