blob: 0166c120e46a1a1ab336640d364d3adf457919ac (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "common.hh"
#include "looper.hh"
// static
uint8_t const Looper::EV_READ = 1 << 0;
// static
uint8_t const Looper::EV_WRITE = 1 << 2;
// static
uint8_t const Looper::EV_ERR = 1 << 3;
|