Click here to Skip to main content
15,883,606 members
Articles / Programming Languages / C++

Writing Win32 Apps with C++: V2 - part 1

Rate me:
Please Sign up or sign in to vote.
4.70/5 (34 votes)
20 Jun 2005CPOL14 min read 107.7K   1.2K   73  
An independent framework to handle Win32 objects inside C++ classes.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "stdx", "..\libs\stdx\stdx.vcproj", "{5C3C0516-1286-4DE3-9629-F5E151B7D7C4}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winx", "..\libs\winx\winx.vcproj", "{1C48E92D-87C0-4A66-A7A9-FBA2B0C04CCF}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "w1", "w1\w1.vcproj", "{857C6F1D-6195-42D4-BB1A-2F3DC1D123BF}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{5C3C0516-1286-4DE3-9629-F5E151B7D7C4}.Debug.ActiveCfg = Debug|Win32
		{5C3C0516-1286-4DE3-9629-F5E151B7D7C4}.Release.ActiveCfg = Release|Win32
		{1C48E92D-87C0-4A66-A7A9-FBA2B0C04CCF}.Debug.ActiveCfg = Debug|Win32
		{1C48E92D-87C0-4A66-A7A9-FBA2B0C04CCF}.Release.ActiveCfg = Release|Win32
		{857C6F1D-6195-42D4-BB1A-2F3DC1D123BF}.Debug.ActiveCfg = Debug|Win32
		{857C6F1D-6195-42D4-BB1A-2F3DC1D123BF}.Debug.Build.0 = Debug|Win32
		{857C6F1D-6195-42D4-BB1A-2F3DC1D123BF}.Release.ActiveCfg = Release|Win32
		{857C6F1D-6195-42D4-BB1A-2F3DC1D123BF}.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
Italy Italy
Born and living in Milan (Italy), I'm an engineer in electronics actually working in the ICT department of an important oil/gas & energy company as responsible for planning and engineering of ICT infrastructures.
Interested in programming since the '70s, today I still define architectures for the ICT, deploying dedicated specific client application for engineering purposes, working with C++, MFC, STL, and recently also C# and D.

Comments and Discussions