일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ipad
- LSTM
- synology
- Lotto
- pycharm
- Button
- dataframe
- SciPy
- DFS
- keras
- javascript
- Series
- Splunk
- SPL
- install
- pip
- 삼성소프트웨어멤버십
- pandas
- imread
- mariadb
- GitHub
- CNN
- E-P1
- index
- GT-S80
- 알고리즘
- Numpy
- Python
- RNN
- mean
Archives
- Today
- Total
잠토의 잠망경
암시적 연결 본문
DllApp.cpp
[40]DllExternC.h
[40]DllExternC.cpp
#include "MyDllTest.h" #include//컴파일러의 라이브러리 관리 모듈에게 [40]DllExternC.lib을 검색해 보도록한다. #pragma comment(lib,"[40]DllExternC.lib") //해당 함수를 임폴트하구 있다. extern "C" MYEXPORT int AddInteger(int,int); int main(void) { int result=AddInteger(10,11); printf("result: %d\n",result); return 0; }
#ifdef MYEXPORT #define MYEXPORT __declspec(dllexport) #else #define MYEXPORT __declspec(dllimport) #endif extern "C" MYEXPORT int AddInteger(int ,int);
[40]DllExternC.cpp
#define MYEXPORT #include "MyDllTest.h" extern "C" MYEXPORT int AddInteger(int a, int b) { return a+b; }
Comments