• 大小: 4.81MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-11-07
  • 语言: C/C++
  • 标签: VC++  MFC  DLL  调用  

资源简介

MCF制作DLL和调用DLL的源码,包含调用和DLL自身源代码

资源截图

代码片段和文件信息

// Date1.cpp: implementation of the Date class.
//
//////////////////////////////////////////////////////////////////////

#include “stdafx.h“
#include “Date.h“

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Date::Date()
{
day=0;
month=0;
year=0;
}

Date::~Date()
{

}
void Date::SetDay(int num)
{
day=num;
}
void Date::SetMonth(int num)
{
month=num;
}
void Date::SetYear(int num)
{
year=num;
}

int Date::GetDay()
{
return day;
}
int Date::GetMonth()
{
return month;
}
int Date::GetYear()
{
return year;
}
CString Date::GetDate()
{
CString date;
date.Format(“%d年%d月%d日“yearmonthday);
return date;
}
int Max(int aint b)
{
return a>b?a:b;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        941  2010-04-26 22:58  MFCDLL\MFCDLLExample\Date.cpp

     文件        837  2010-04-26 21:25  MFCDLL\MFCDLLExample\Date.h

     文件      12204  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\Date.obj

     文件     102499  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.dll

     文件       2275  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.exp

     文件      56544  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.ilk

     文件       4788  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.lib

     文件       7762  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.obj

     文件    8152364  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.pch

     文件     254976  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.pdb

     文件        912  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\MFCDLLExample.res

     文件     164279  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\StdAfx.obj

     文件     263168  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\vc60.idb

     文件     569344  2010-04-26 22:58  MFCDLL\MFCDLLExample\Debug\vc60.pdb

     文件      18296  2010-04-26 22:58  MFCDLL\MFCDLLExample\MFCDLLExample.aps

     文件        261  2010-04-26 23:00  MFCDLL\MFCDLLExample\MFCDLLExample.clw

     文件       1582  2010-04-26 22:55  MFCDLL\MFCDLLExample\MFCDLLExample.cpp

     文件        205  2010-04-26 22:55  MFCDLL\MFCDLLExample\MFCDLLExample.def

     文件       4315  2010-04-26 22:57  MFCDLL\MFCDLLExample\MFCDLLExample.dsp

     文件        551  2010-04-26 22:55  MFCDLL\MFCDLLExample\MFCDLLExample.dsw

     文件      25600  2010-04-26 23:00  MFCDLL\MFCDLLExample\MFCDLLExample.ncb

     文件      48640  2010-04-26 23:00  MFCDLL\MFCDLLExample\MFCDLLExample.opt

     文件        260  2010-04-26 22:58  MFCDLL\MFCDLLExample\MFCDLLExample.plg

     文件       3695  2010-04-26 22:57  MFCDLL\MFCDLLExample\MFCDLLExample.rc

     文件       2553  2010-04-26 22:55  MFCDLL\MFCDLLExample\ReadMe.txt

     文件        405  2010-04-26 22:55  MFCDLL\MFCDLLExample\res\MFCDLLExample.rc2

     文件        511  2010-04-26 22:58  MFCDLL\MFCDLLExample\resource.h

     文件        215  2010-04-26 22:55  MFCDLL\MFCDLLExample\StdAfx.cpp

     文件       1447  2010-04-26 22:55  MFCDLL\MFCDLLExample\StdAfx.h

     文件        837  2010-04-26 21:25  MFCDLL\UseMFCDLL\Date.h

............此处省略42个文件信息

评论

共有 条评论