Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 


다음과 같이 VS.NET 2005에서 C#으로 간단하게 Class Library를 만들었습니다.

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace ClassLibrary1
{
    [ComVisible(true)]
    [Guid("23172f2f-a3d3-4180-97ae-7805f74a5a45")]
    [ClassInterface(ClassInterfaceType.AutoDual)]
    public class SecureWrap
    {
        public bool CheckLicense()
        {
            MessageBox.Show("1111111111", "222222222222", MessageBoxButtons.OK);
            return true;
        }
    }
}

컴파일해서 나온 내용을 아래와 같이 레지스트리에 등록하고 TLB 파일을 얻어냈습니다.

    regasm ClassLibrary1.dll /codebase /tlb:ClassLibrary1.tlb

SecureWrap 클래스를 Native VC++에서 사용하는 예제를 만들었습니다. 간단한 Console Application입니다.
아래와 같이 간단하게 코드를 작성하고 컴파일을 하였습니다.

#include "stdafx.h"
#import "..\ClassLibrary1\bin\Debug\ClassLibrary1.tlb" no_namespace

void _tmain(int argc, _TCHAR* argv[])
{
	CoInitialize( NULL );

	{	
		_SecureWrapPtr ptr;
		ptr.CreateInstance( __uuidof( SecureWrap ) );

		VARIANT_BOOL vtBool;
		ptr->CheckLicense( &vtBool );
	}

	CoUninitialize();
}

하지만, 위와 같이 하게 되면 다음과 같은 오류들이 발생하게 됩니다.

d:\temp2\consolecpp\debug\classlibrary1.tlh(62) : error C2146: syntax error : missing ';' before identifier 'GetType'
d:\temp2\consolecpp\debug\classlibrary1.tlh(62) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
d:\temp2\consolecpp\debug\classlibrary1.tlh(62) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
d:\temp2\consolecpp\debug\classlibrary1.tlh(62) : warning C4183: 'GetType': missing return type; assumed to be a member function returning 'int'
d:\temp2\consolecpp\debug\classlibrary1.tli(35) : error C2143: syntax error : missing ';' before '_SecureWrap::GetType'
d:\temp2\consolecpp\debug\classlibrary1.tli(35) : error C2433: '_TypePtr' : 'inline' not permitted on data declarations
d:\temp2\consolecpp\debug\classlibrary1.tli(35) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
d:\temp2\consolecpp\debug\classlibrary1.tli(35) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
d:\temp2\consolecpp\debug\classlibrary1.tli(39) : error C2064: term does not evaluate to a function taking 2 arguments
d:\temp2\consolecpp\consolecpp.cpp(19) : error C2660: '_SecureWrap::CheckLicense' : function does not take 1 arguments

첫 번째 오류의 GetType 메서드 정의를 TLH 파일에서 찾아보면 아래와 같이 나오는 것을 볼 수 있습니다.

    _TypePtr GetType ( );

_Type에 대해서 Smart Pointer 처리가 된 것을 볼 수 있습니다. 하지만, 위의 콘솔 애플리케이션의 어느 곳에서도 _Type에 대한 Smart Pointer 정의를 발견할 수 없기 때문에 이러한 오류가 나오는 것인데요. 이를 해결하기 위해서는 2가지 방법을 선택할 수 있습니다.

첫 번째 방법은, _TypePtr 형식이 사용되지 않도록 Raw Interface 유형으로 TLH 파일을 생성하는 것입니다. 다음과 같이 import 지시자에 옵션을 하나 더 주게 되면 이를 가능하게 해줍니다.

#import "..\ClassLibrary1\bin\Debug\ClassLibrary1.tlb" raw_interfaces_only  no_namespace

두 번째 방법은, _TypePtr 형식이 컴파일되도록 Smart Pointer 처리를 해주는 것입니다. 이러한 처리는 개발자가 직접 _COM_SMARTPTR_TYPEDEF을 해줄 수도 있겠지만, import로 생성된 TLH 파일의 상단 주석 부분을 보면 어떻게 해야 하는지 친절하게 가르쳐 주고 있습니다.

// compiler-generated file created 05/02/06 at 23:08:07 - DO NOT EDIT!

//
// Cross-referenced type libraries:
//
//  #import "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.tlb"
//

이를 적용하여 다음과 같이 간단하게 호출을 할 수 있습니다.

#include "stdafx.h"


#import "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorlib.tlb" no_namespace
#import "..\ClassLibrary1\bin\Debug\ClassLibrary1.tlb" no_namespace

void _tmain(int argc, _TCHAR* argv[])
{
	CoInitialize( NULL );

	{	
		_SecureWrapPtr ptr;
		ptr.CreateInstance( __uuidof( SecureWrap ) );
		ptr->CheckLicense();
	}

	CoUninitialize();
}







[최초 등록일: ]
[최종 수정일: 6/26/2021]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 121  122  123  124  125  [126]  127  128  129  130  131  132  133  134  135  ...
NoWriterDateCnt.TitleFile(s)
2904정성태4/27/201527060DDK: 6. ZwTerminateProcess로 프로세스를 종료하는 Device Driver 프로그램 [2]파일 다운로드1
2903정성태4/20/201520542Windows: 110. (무료) 마이크로소프트 온라인 강좌 소개 - Azure에서 제공하는 계정 관리 서비스
2902정성태4/16/201526500Windows: 109. (무료) 마이크로소프트 온라인 강좌 소개 - Active Directory 이해
2901정성태4/15/201523105Windows: 108. (무료) 마이크로소프트 온라인 강좌 소개 - Windows Server 2012 R2 주요 기술 (Hyper-V 관점)
2900정성태3/24/201522142오류 유형: 279. robocopy 오류 - The file cannot be accessed by the system [4]
2899정성태3/24/201530244개발 환경 구성: 264. Visual Studio 2013 솔루션을 2015로 마이그레이션
2898정성태3/24/201520830개발 환경 구성: 263. SharePoint 2013을 Windows Server 2012 R2에 설치
2897정성태3/18/201519500오류 유형: 278. LoadLibrary("...") failed - Invalid access to memory location.
2896정성태3/18/201519654VC++: 90. Visual Studio 2013에서 Visual Basic 6용 ATL Control 제작
2895정성태3/18/201522705VC++: 89. Visual Studio 2015 - auto 반환 타입 및 thread_local 예약어 지원(C++ 11 표준) [2]
2894정성태3/18/201520966.NET Framework: 509. ELEMENT_TYPE_MODIFIER의 조합
2893정성태3/18/201521053오류 유형: 277. command line error MIDL1004: cannot execute C preprocessor cl.exe
2892정성태3/17/201525924오류 유형: 276. robocopy - Logon failure: unknown user name or bad password.
2891정성태3/17/201542057개발 환경 구성: 262. Visual Basic 6 (Enterprise Edition)을 Windows 7 x86에 설치하는 방법 [1]
2890정성태3/17/201524421오류 유형: 275. Internet Explorer - This page can't be displayed
2889정성태3/17/201525065Windows: 107. (2015-03-12) 업데이트 이후 작업 표시줄 또는 탐색기의 반응이 느려지는 문제 [1]
2888정성태3/17/201523112.NET Framework: 508. Visual Studio 빌드 - fatal error C1033: cannot open program database ''
2887정성태3/13/201520332.NET Framework: 507. CoreFx 빌드하는 방법
2886정성태3/13/201522104오류 유형: 274. CoreFx, CoreCLR 빌드 시 "error CS0518: Predefined type 'System.Object' is not defined or imported" 오류 해결 방법
2885정성태3/13/201533431VS.NET IDE: 99. Visual Studio는 2019는 32비트, 2022부터 64비트 버전입니다. [2]
2884정성태3/12/201526725.NET Framework: 506. .NETCore = CoreFX + CoreCLR [5]
2883정성태3/10/201523852.NET Framework: 505. OpenCover 소스 코드 분석을 Visual Studio 2013에서 하는 방법 [1]
2882정성태3/10/201522746.NET Framework: 504. OpenCover 코드 커버리지 도구의 동작 방식을 통해 살펴보는 Calli IL 코드 사용법
2881정성태3/9/201523272개발 환경 구성: 261. OpenCover 오픈 소스를 이용한 .NET 코드 커버리지(Code coverage)
2880정성태3/7/201521526개발 환경 구성: 260. C# Code Coverage 도구 - Semantic Designs 소개
2879정성태3/3/201526524개발 환경 구성: 259. Visual Studio 없이 Visual C++ 컴파일하는 방법
... 121  122  123  124  125  [126]  127  128  129  130  131  132  133  134  135  ...