| 5 | using namespace std; |
| 6 | |
| 7 | extern "C" int onLoad(vector<key*>& keys) { |
| 8 | cout << "Plugin 1 Loaded" << endl; |
| 9 | return 0; |
| 10 | } |
| 11 | |
| 12 | extern "C" int onPress(vector<key*>& keys) { |
| 13 | cout << "Plugin 1 press event" << endl; |
nothing calls this directly
no outgoing calls
no test coverage detected