CppDll.cpp
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*)
- {
- return 1;
- }
- //---------------------------------------------------------------------------
- extern "C" __declspec(dllexport)
- int WINAPI Double (int n)
- {
- return n * 2;
- }
- extern "C" __declspec(dllexport)
- int WINAPI Triple (int n)
- {
- return n * 3;
- }
- __declspec(dllexport)
- int WINAPI Add (int a, int b)
- {
- return (a + b);
- }