2019-08-30 12:33:40 +00:00
|
|
|
#ifndef ESPANSO_BRIDGE_H
|
|
|
|
#define ESPANSO_BRIDGE_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2019-08-30 15:58:18 +00:00
|
|
|
/*
|
|
|
|
* Initialize the Windows worker's parameters
|
|
|
|
*/
|
|
|
|
extern "C" void initialize();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Start the event loop indefinitely. Blocking call.
|
|
|
|
*/
|
|
|
|
extern "C" void eventloop();
|
2019-08-30 12:33:40 +00:00
|
|
|
|
|
|
|
#endif //ESPANSO_BRIDGE_H
|