CGO 之 Dll调用

本文详细介绍了如何通过Go语言的CGO特性来调用并集成DLL动态链接库,涵盖了从生成DLL到在Go中使用的完整过程。
摘要由CSDN通过智能技术生成


生成的dll库代码

// GoDll.cpp : 定义 DLL 应用程序的导出函数。
//

#include "stdafx.h"
#include <iostream>
#include <cstdint>

void  __stdcall void_R0()
{
	std::cout << __FUNCTION__ << std::endl;
}


void  __stdcall void_R1(const char* name)
{
	std::cout << __FUNCTION__ << " ----> " << name << std::endl;
}


void  __stdcall void_R2(const char*name ,char **outName)
{
	std::string _name = "HintSoft 新浩艺-";
	_name += name;
	strcpy(*outName,_name.c_str());
}


uint8_t __stdcall uint8_R1(char** outJson)
{
	*outJson = new char[256];
	memset(*outJson,0,256);
	strcpy(*outJson,"Hello -> 你被骗了,这里没有Json,只有中文");
	return 1;
}

void __stdcall uint8_R1_free(char** outJson)
{
	if(outJson == 0) return;

	if(*outJson == 0) return;

	delete [](*outJson);
	*outJson = nullptr;
}

typedef void (*CallBackFunType)(const char * in);
void set
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值