You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
423 B
C++
23 lines
423 B
C++
// FaciesOutlineLib.cpp : 定义 DLL 的导出函数。
|
|
//
|
|
|
|
#include "pch.h"
|
|
#include "framework.h"
|
|
#include "FaciesOutlineLib.h"
|
|
|
|
|
|
// 这是导出变量的一个示例
|
|
FACIESOUTLINELIB_API int nFaciesOutlineLib=0;
|
|
|
|
// 这是导出函数的一个示例。
|
|
FACIESOUTLINELIB_API int fnFaciesOutlineLib(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// 这是已导出类的构造函数。
|
|
CFaciesOutlineLib::CFaciesOutlineLib()
|
|
{
|
|
return;
|
|
}
|