-
Автор темы
- #1
код на python:
код на c++
Код:
import ctypes
my_lib = ctypes.cdll.LoadLibrary("my_lib.dll")
my_lib.getString.restype = ctypes.c_char_p
popa = my_lib.getString()
popa_str = popa.decode("utf-8")
print(popa_str)
Код:
#include <iostream>
#include <string>
extern "C" {
__declspec(dllexport) const char* getString() {
std::string popa = "Hello World!";
return popa.c_str();
}
}