blob: 5eda6d7158d6c593a64a35fb4a245425defd81dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <string>
#include "Lib_stub.h"
void log_msg(const std::string &str) {
logMsg((HsPtr)str.c_str());
}
extern "C" void some_c_wrapper() {
log_msg("Hello from C++!");
}
|