비주얼 C++과 C#에 관련해서 질문이 있습니다.

다크슈테펜의 이미지

지금 프로그램을 하나 작성하고 있는데...
문제는 그게 잘안되서요...
우선 C#으로 기본 이벤트나 그리고 DLL을 불러 들일려고 하구요...
기본적으로 lib으로 된 라이브러리에서 비주얼 C로 작성된 함수를 불러 들일려고 합니다.
그런데 자꾸만 메모리 에러나고 디버그하면 언핸들드 익셉션이 발생하더군요 비주얼 스튜디오 6.0 디버그 모드를 봐도 어셈블리라서 제가 봐도 모르겠구요..그래서 도움을 요청합니다.

우선 문자 전송 프로그램인데 로그인할때 인증에 관련된 함수를 호출해서 우선 서버에서 인증을 받습니다.그런데 여기서 콜백함수를 두개 인자를 받기 때문에 저는 MFC DLL로 만들어서 그냥 콜백함수는 인자로 박아 버렸습니다.그래서 인증은 되었는데 문제는 메인으로 들어와서 문자전송을 하면 메모리 에러가 난다는거겠죠...

제 생각에는 상태 플래그에 관련된 뭔가가 생성이 안됬거나 널로 전송이 되서 그런것 같은데요...

프로그램의 개요는 이렇습니다.
우선 C#에서 관련 라이브러리 함수를 호출하기위해서 DLLImport로 해서 관련 함수를 원래 라이브러리와 그리고 DLL에서 불러옵니다.인자값은 포인터 있는거는 다 마샬링을 해줬습니다.
인증 관련 함수는 MFC DLL을 만들어서 거기 인자값을 콜백함수를 제외하고 (델리게이트로 해서 했는데도 안되는것 같아서...ㅡㅡ;;) 받게 한다음에 실질적으로 MFC DLL에서 함수를 호출하도록 했습니다.

어떻게 하면 좋을까요...?
비주얼 C++의 디버그 모드에서 콜 스택 창을 열어봐도 어셈블리를 모르기때문에 갑갑합니다.ㅠ0ㅠ;;

	[DllImport("x_msggate_d.dll")]
		public static extern int fn_x_submit(
			int			data_type,
			[MarshalAs(UnmanagedType.LPArray)] char[]		user_id,
			[MarshalAs(UnmanagedType.LPArray)] char[]		user_domain,
			[MarshalAs(UnmanagedType.LPArray)] char[]		user_phone_id,
			[MarshalAs(UnmanagedType.LPArray)] char[]		user_access_ip,
			int			msg_id,
			[MarshalAs(UnmanagedType.LPArray)] char[]		subject,
			[MarshalAs(UnmanagedType.LPArray)] char[]		schedule_time,
			[MarshalAs(UnmanagedType.LPArray)] char[]		callback,
			int			dest_addr_count,
			[MarshalAs(UnmanagedType.LPArray)] char[]		dest_addr,
			[MarshalAs(UnmanagedType.LPArray)] char[]		content,
			int			attach_file_count,
			[MarshalAs(UnmanagedType.LPArray)] char[]		attach_file) ;

위에는 제가 바꾼거고,원래 비주얼 C에 헤더파일에는 아래와 같이 호출하더군요....


#ifdef _WINDOWS

#define WINAPI __stdcall
#ifdef X_MSGGATE_EXPORTS
#define X_MSGGATE_API __declspec(dllexport)
#else
#define X_MSGGATE_API __declspec(dllimport)
#endif
.
.
.
.

X_MSGGATE_API int fn_x_submit(
	int			data_type,
	char		*user_id,
	char		*user_domain,
	char		*user_phone_id,
	char		*user_access_ip,
	int			msg_id,
	char		*subject,
	char		*schedule_time,
	char		*callback,
	int			dest_addr_count,
	char		*dest_addr,
	char		*content,
	int			attach_file_count,
	char		*attach_file) ;
ssggkim의 이미지

char *는 in이냐 out이냐에 따라 String 이나 StringBuilder를 쓰시면 될 것 같습니다.
이미 보셨을 것 같지만 http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconmarshalingdatawithplatforminvoke.asp 를 차근차근 참조하시면서 해 보시면 좋을 듯 합니다.

ps. 그리고 여기보다는 devpia 같은 곳이 더 답변을 얻으시기 쉬울 것 같습니다. :wink:

byung82의 이미지

흠..

일단 널이 어디서 오는지 부터 확인을 하셔야 하겠군요 ^^:

제가 봐서는 MC ++로 호출부분을 담당하는곳만 작업을 하시고

C#으로 호출할수 있게 Middle ware를 만드시는게 더 편하고 디버깅이 쉬울것 같습니다.

그럼 ^^:

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.