14 lines
189 B
C++
14 lines
189 B
C++
#include "pip.h"
|
|
|
|
PIKbdListener kbd;
|
|
|
|
int main() {
|
|
//PISystemInfo::machineID();
|
|
kbd.enableExitCapture();
|
|
PIThread t;
|
|
//t.start(10);
|
|
WAIT_FOR_EXIT;
|
|
t.stop();
|
|
return 0;
|
|
}
|