Click here to Skip to main content
15,881,381 members
Articles / Programming Languages / C++

Simple Stack-Based Wrapper for Windows and XML Registries

Rate me:
Please Sign up or sign in to vote.
4.19/5 (14 votes)
9 Aug 20049 min read 73.4K   796   19  
Left to my own devices, I tend to leak handles, leave keys open too long, close and re-open keys too often, and generally make a mess of the whole thing. And frankly, so do most of you (no insult intended).
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RegDemo", "RegDemo.vcproj", "{82E70832-118B-4C98-B3CC-943A39AE928C}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{82E70832-118B-4C98-B3CC-943A39AE928C}.Debug.ActiveCfg = Debug|Win32
		{82E70832-118B-4C98-B3CC-943A39AE928C}.Debug.Build.0 = Debug|Win32
		{82E70832-118B-4C98-B3CC-943A39AE928C}.Release.ActiveCfg = Release|Win32
		{82E70832-118B-4C98-B3CC-943A39AE928C}.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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
A compiler warns of bogasity, ignore it at your peril. Unless you've done the compiler's job yourself, don't criticize it.

Comments and Discussions