espanso/native/libwinbridge/bridge.h

12 lines
201 B
C
Raw Normal View History

2019-08-30 12:33:40 +00:00
#ifndef ESPANSO_BRIDGE_H
#define ESPANSO_BRIDGE_H
#include <stdio.h>
extern "C" void testcall(float value)
{
printf("Hello, world from C! Value passed: %f\n",value);
}
#endif //ESPANSO_BRIDGE_H