How to create DLL and call functions using CTYPES on Windows

Environment

 
:: MS Visual Studio Community 2019, ver 16.6.1
 

Work through

 

 

:: 기본 생성 파일 : framewrok.h dllmain.cpp poh.h poh.cpp
:: 기본 생성되는 파일은 수정할 필요 없음.
 

 

:: pch.h 를 가장 먼저 선언해야 함.
:: 나중에 선언할 경우, C2065(undeclared identifier) 등의 오류가 발생함.
 

 

References

 
:: Python. ctypes. 파이썬에서 DLL  활용