mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-11 17:57:19 +10:00
24 lines
345 B
C++
24 lines
345 B
C++
// reslib.cpp : 定义 DLL 应用程序的导出函数。
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "reslib.h"
|
|
#include "resource.h"
|
|
|
|
|
|
// 这是导出变量的一个示例
|
|
RESLIB_API int nreslib=0;
|
|
|
|
// 这是导出函数的一个示例。
|
|
RESLIB_API int fnreslib(void)
|
|
{
|
|
return 42;
|
|
}
|
|
|
|
// 这是已导出类的构造函数。
|
|
// 有关类定义的信息,请参阅 reslib.h
|
|
Creslib::Creslib()
|
|
{
|
|
return;
|
|
}
|