12 lines
223 B
C
12 lines
223 B
C
#ifndef SECURITY_RP_UTIL_H
|
|
#define SECURITY_RP_UTIL_H
|
|
|
|
/**
|
|
* Enum for available roundplug types
|
|
*/
|
|
enum security_rp_util_rp_type {
|
|
SECURITY_RP_UTIL_RP_TYPE_BLACK = 0,
|
|
SECURITY_RP_UTIL_RP_TYPE_WHITE = 1,
|
|
};
|
|
|
|
#endif |