1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
// (C) Michael 'Mickey' Lauer <mickey@vanille-media.de>
// LGPL2
// scheduled for inclusion in linux.vapi
namespace Linux
{
/*
* RfKill
*/
[CCode (cname = "struct rfkill_event", cheader_filename = "linux/rfkill.h")]
public struct RfKillEvent {
public uint32 idx;
public RfKillType type;
public RfKillOp op;
public uint8 soft;
public uint8 hard;
}
[CCode (cname = "guint8", cprefix = "RFKILL_OP_", cheader_filename = "linux/rfkill.h")]
public enum RfKillOp {
ADD,
DEL,
CHANGE,
CHANGE_ALL
}
[CCode (cname = "guint8", cprefix = "RFKILL_STATE_", cheader_filename = "linux/rfkill.h")]
public enum RfKillState {
SOFT_BLOCKED,
UNBLOCKED,
HARD_BLOCKED
}
[CCode (cname = "guint8", cprefix = "RFKILL_TYPE_", cheader_filename = "linux/rfkill.h")]
public enum RfKillType {
ALL,
WLAN,
BLUETOOTH,
UWB,
WIMAX,
WWAN
}
} /* namespace Linux */
|