Click here to Skip to main content
15,884,473 members
Articles / Programming Languages / C++

Registry Symbolic Links

Rate me:
Please Sign up or sign in to vote.
4.75/5 (14 votes)
21 Oct 2005CPOL9 min read 69.1K   2K   30  
An article on creating and using registry symbolic links.
// linkcreat.h : Haupt-Header-Datei f�r die Anwendung LINKCREAT
//

#if !defined(AFX_LINKCREAT_H__118BF80C_85DB_40C6_8C9A_BBB773D8EED8__INCLUDED_)
#define AFX_LINKCREAT_H__118BF80C_85DB_40C6_8C9A_BBB773D8EED8__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// Hauptsymbole

/////////////////////////////////////////////////////////////////////////////
// CLinkcreatApp:
// Siehe linkcreat.cpp f�r die Implementierung dieser Klasse
//

class CLinkcreatApp : public CWinApp
{
public:
	CLinkcreatApp();

// �berladungen
	// Vom Klassenassistenten generierte �berladungen virtueller Funktionen
	//{{AFX_VIRTUAL(CLinkcreatApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementierung

	//{{AFX_MSG(CLinkcreatApp)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ f�gt unmittelbar vor der vorhergehenden Zeile zus�tzliche Deklarationen ein.

#endif // !defined(AFX_LINKCREAT_H__118BF80C_85DB_40C6_8C9A_BBB773D8EED8__INCLUDED_)

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
Software Developer
Germany Germany
Stefan has been writing programs in C/C++ since 1991, and for Windows since 1993. He holds a German engineer's degree Dipl.-Ing. (FH) in "Microelectronics/Technical Computer Science" from the Aalen (Germany) University of Applied Sciences and an MSc in "Software Technology" from the Stuttgart (Germany) University of Applied Sciences. Currently, he is employed by a software company in the south-west of Germany that specializes in PC life-cycle products and software deployment technology. In his spare time, Stefan likes to go swimming and enjoys listening to jazz music from the fifties. And yes, he has a Weblog at http://mcblogs.craalse.de/sku (German only).

Comments and Discussions