일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 안드로이드
- 2FA
- MSYS2
- albumbook
- apple
- OSX
- openssl
- 앱스토어
- Xcode
- MFA
- 앨범북
- kmip
- OTP
- git
- 인증
- SwiftUI
- Nodejs
- SWIFT
- FIDO2
- otpkey
- MYSQL
- SSH
- WebAuthn
- fido
- SSL
- appres
- 애플
- css
- 앱리소스
- Android
Archives
- Today
- Total
인디노트
C# - DLL 인수 전달 코딩 방법 본문
DLL 의 함수를 C# 에서 연결하는 방법
DLL 코드
C 코드
__declspec(dllexport) void __cdecl Function1(void)
{
}
__declspec(dllexport) int __cdecl Function2(void)
{
return 100;
}
__declspec(dllexport) char* __cdecl Function3(void)
{
return "Function3";
}
__declspec(dllexport) void __cdecl Function4(char *from, char **to)
{
memcpy(*to, from, (int)strlen(from)+1);
}
H 코드
#ifdef _cplusplus
extern "C" {
#endif // _cplusplus
__declspec(dllexport) void __cdecl Function1(void);
__declspec(dllexport) int __cdecl Function2(void);
__declspec(dllexport) char* __cdecl Function3(void);
__declspec(dllexport) void __cdecl Function4(char *from, char **to);
#ifdef _cplusplus
}
#endif
위의 코드로 functions.dll 을 만들었다고 하면 다음과 같이 C# 에서 호출할 수 있다.
DllFunctions.cs
public class DllFunctions
{
[DllImport("functions.dll", CallingConvention = CallingConvention.Cdecl)]
extern internal static void Function1();
[DllImport("functions.dll", CallingConvention = CallingConvention.Cdecl)]
static extern internal int Function2();
[DllImport("functions.dll", CallingConvention = CallingConvention.Cdecl)]
static extern internal IntPtr Function3();
[DllImport("functions.dll", CallingConvention = CallingConvention.Cdecl)]
static extern void Function4(string from, ref string to);
public DllFunctions()
{
// 아무것도 주거나 받거나 하지 않고 수행만 하는 함수
Function1();
// int 값을 리턴하는 함수 (C 에서 int 를 리턴)
int n = Functions2();
// string 값을 리턴하는 함수 (C 에서 char * 를 리턴)
IntPtr pstr = Function3();
string str = PtrToStringUtf8(pstr); // IntPtr 를 가져와서 string 으로 변환
// string 을 인수로 주고 string 를 인수로 받아오는 함수
string from = "This is a from string";
string to = new string((char)0x00, 50);
Function4(from, ref to)
}
private string PtrToStringUtf8(IntPtr ptr) // aPtr is nul-terminated
{
if (ptr == IntPtr.Zero)
return "";
int len = 0;
while (System.Runtime.InteropServices.Marshal.ReadByte(ptr, len) != 0)
len++;
if (len == 0)
return "";
byte[] array = new byte[len];
System.Runtime.InteropServices.Marshal.Copy(ptr, array, 0, len);
return System.Text.Encoding.UTF8.GetString(array);
}
}
이와같이 C# 에서 C 함수를 호출하여 인수를 전달하는 방법에 다양한 변수 및 포인터 그리고 구조체 및 클래스 (예; StringBuilder) 등도 전달 할 수 있다.
다음의 문서를 참고하면 좋을 듯 하다.
https://indienote.tistory.com/649
반응형
'소스 팁 > C, C++, C#' 카테고리의 다른 글
GCC 9.1.0 on Ubuntu 14.04 & 16.04 & 18.04: (0) | 2024.03.10 |
---|---|
[wpf] Gird, StackPanel 레이아웃 사용법 및 예제(구글메인 페이지 따라 만들기) (0) | 2021.09.20 |
C# C++ DLL (0) | 2021.09.18 |
Microsoft .NET Framework 개발자 팩 다운로드 (0) | 2021.08.23 |
PLT와 GOT 자세히 알기 1 (0) | 2019.02.06 |
Comments