简单的生成DLL的步骤

1.新建项目:
新建-->项目-->Win32控制台-->选择DLL、空项目。
2.创建.h文件

//MyDll.h
#ifndef _MYDLL_H_
#define _MYDLL_H_

extern "C"{
#ifdef _DLL_SAMPLE
#define DLL_SAMPLE_API __declspec(dllexport)
#else
#define DLL_SAMPLE_API __declspec(dllimport)
#endif

    int a = 0;
    DLL_SAMPLE_API void TestDll(int);

#undef  DLL_SAMPLE_API
}
#endif

3.创建.cpp文件

//MyDll.cpp
#include 
#include "MyDll.h"

using namespace std;

void TestDll(int m)
{
    cout<<"Test Dll "<

你可能感兴趣的:(简单的生成DLL的步骤)