Click here to Skip to main content
15,885,953 members
Articles / Desktop Programming / MFC

Unmanaged to Managed Calls

Rate me:
Please Sign up or sign in to vote.
4.96/5 (42 votes)
3 Apr 2003CPOL3 min read 234.6K   3K   57  
Call managed code from unmanaged code
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Bridge", "Bridge.vcproj", "{12C4D298-81CB-4A16-BD86-1FF8927A64E8}"
EndProject
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "dotNetAssembly", "dotNetAssembly\dotNetAssembly.vbproj", "{A94CF383-F36E-42FE-BBA2-D285B92EEC36}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BridgeTest", "BridgeTest\BridgeTest.vcproj", "{0898E7C7-9672-4A88-B815-BCF6886E5609}"
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		ConfigName.0 = Debug
		ConfigName.1 = Release
	EndGlobalSection
	GlobalSection(ProjectDependencies) = postSolution
		{12C4D298-81CB-4A16-BD86-1FF8927A64E8}.0 = {A94CF383-F36E-42FE-BBA2-D285B92EEC36}
		{0898E7C7-9672-4A88-B815-BCF6886E5609}.0 = {12C4D298-81CB-4A16-BD86-1FF8927A64E8}
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{12C4D298-81CB-4A16-BD86-1FF8927A64E8}.Debug.ActiveCfg = Debug|Win32
		{12C4D298-81CB-4A16-BD86-1FF8927A64E8}.Debug.Build.0 = Debug|Win32
		{12C4D298-81CB-4A16-BD86-1FF8927A64E8}.Release.ActiveCfg = Release|Win32
		{12C4D298-81CB-4A16-BD86-1FF8927A64E8}.Release.Build.0 = Release|Win32
		{A94CF383-F36E-42FE-BBA2-D285B92EEC36}.Debug.ActiveCfg = Debug|.NET
		{A94CF383-F36E-42FE-BBA2-D285B92EEC36}.Debug.Build.0 = Debug|.NET
		{A94CF383-F36E-42FE-BBA2-D285B92EEC36}.Release.ActiveCfg = Release|.NET
		{A94CF383-F36E-42FE-BBA2-D285B92EEC36}.Release.Build.0 = Release|.NET
		{0898E7C7-9672-4A88-B815-BCF6886E5609}.Debug.ActiveCfg = Debug|Win32
		{0898E7C7-9672-4A88-B815-BCF6886E5609}.Debug.Build.0 = Debug|Win32
		{0898E7C7-9672-4A88-B815-BCF6886E5609}.Release.ActiveCfg = Release|Win32
		{0898E7C7-9672-4A88-B815-BCF6886E5609}.Release.Build.0 = Release|Win32
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Michael has been developing software for about 19 years primarily in C#, C/C++, Fortran, and Visual Basic. His previous experience includes Internet data services (communication protocols, data storage and GIS) for the mortgage industry, oil platform instrumentation and explosives simulation and testing. He holds a B.S. in astrophysics and computer science. He is currently working for Global Software in Oklahoma City developing law enforcement and emergency services related software.

Comments and Discussions