Program Listing for File al.h
↰ Return to documentation for file (rcsw/al/al.h
)
#pragma once
/*******************************************************************************
* Constants
******************************************************************************/
#define RCSW_AL_TARGET_POSIX 0
#define RCSW_AL_TARGET_BAREMETAL 1
#define RCSW_AL_TARGET_BOOTSTRAP 2
#if RCSW_CONFIG_AL_TARGET == RCSW_AL_TARGET_BAREMETAL
#define __baremetal__
#endif
#if RCSW_CONFIG_AL_TARGET == RCSW_AL_TARGET_BOOTSTRAP
#define __bootstrap__
#endif