zoukankan      html  css  js  c++  java
  • 使用dll,将image库开放出去

     这是很经典的想法了,但是如何来做,不经过摸索不知道细节。

     
    最简单:
    dll处
     
    #include "stdafx.h"
     
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #endif
    #define DllExport _declspec (dllexport)
     
    DllExport double aValue =1.5;
    DllExport int dlladd()
    {
                     return 5;
    }
    DllExport int dlladd( int a,int b)
    {
                     return a+b;
    }
     
    demo处
    #define DllImport _declspec (dllimport)
     
    // 用?于应|用?程序“关?于”菜?单项?的? CAboutDlg 对?话框
    DllImport int dlladd( int a,int b);
    配置
  • 相关阅读:
    高精度 模板
    《图论》邻接表
    模板整理
    H
    C
    同余定理的应用(处理大数
    H
    1153: 简易版最长序列
    1152: 二分搜索
    1151: 大整数加法(正数)
  • 原文地址:https://www.cnblogs.com/jsxyhelu/p/3847384.html
Copyright © 2011-2022 走看看