espanso/native/libwinbridge/bridge.h
2019-08-30 14:33:40 +02:00

12 lines
201 B
C

#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