码迷,mamicode.com
首页 > 编程语言 > 详细

Unity 调用C++ 编译DLL

时间:2018-12-16 23:31:26      阅读:336      评论:0      收藏:0      [点我收藏+]

标签:命名   stream   runtime   imp   ons   开始   就是   自己   port   

 

首选需要创建C++ 工程:

技术分享图片

技术分享图片

 

技术分享图片

 

一: 自己添加Custom.h 和Custom.cpp  在头文件里面定义一个MyCustom 类

#pragma once
#include <iostream>
#include <string>
#include <time.h>
class __declspec(dllexport) MyCustom
{
public:
 int getAdd(int a, int b);
};

extern"C" __declspec(dllexport) int customAdd(int a, int b);
 
注意点: class __declspec(dllexport) MyCustom  这个“__declspec(dllexport)” 一定要有,有些是宏定义 
    extern"C" __declspec(dllexport) int customAdd(int a, int b);       “extern"C" __declspec(dllexport)” 一定要写 尤其是 extern“c“
 
 
  
 
  技术分享图片
 
cpp 里面这个customAdd 就是让外面调用的方法
 
可以在这个方法里面调用其他的方法来处理逻辑
 
 
接下来开始编译
  技术分享图片
注意: 红框标注
   有x64  和x86 两个选项  这个是和unity是想对应的。
 
 
技术分享图片

 

我编译的x64  所以在相对于的x64文件夹下面找到dll

接下来 导入到unity  

 在Assets   下面创建一个名字为 Plugins 到文件夹   同时把DLL 放进去 

 

创建一个c#脚本 

需要using System.Runtime.InteropServices;  命名空间

 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Runtime.InteropServices;
public abstract class UnityDLL
{
    //[DllImport("TestDll")]
    // public static extern int add(int a, int b);
    [DllImport("ProjectDll")]
    public static extern void PrintDebugLog();
    [DllImport("ProjectDll")]
    public static extern int getSum(int a, int b);

    [DllImport("myDll")]
    public static extern int fnmyDll();
    [DllImport("myDll")]
    public static extern int getgetNumber(int a, int b);

    [DllImport("CustomDll")]
    public static extern int customAdd(int a, int b);
}
 
 
 

 

Unity 调用C++ 编译DLL

标签:命名   stream   runtime   imp   ons   开始   就是   自己   port   

原文地址:https://www.cnblogs.com/mayichen0823/p/10127990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!