Click here to Skip to main content
15,886,783 members
Articles / Desktop Programming / ATL

Shell Extensions for .NET Assemblies

Rate me:
Please Sign up or sign in to vote.
4.98/5 (29 votes)
17 Nov 2005Ms-PL3 min read 184.2K   2.6K   81  
Shell extensions to distinguish between .NET assemblies and Win32 applications and libraries.
// Resources.cpp : Implementation of CResources

#include "stdafx.h"
#include "Resources.h"
#include <strsafe.h>

CResources::CResources()
{
}

LANGID CResources::GetCurrentUILanguage(void)
{
}

UINT CResources::LoadString(UINT uID, LPTSTR pszBuffer, UINT cchBuffer)
{
}

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 Microsoft Public License (Ms-PL)


Written By
Software Developer Microsoft
United States United States
Principal Software Engineer currently working on Azure SDKs at Microsoft. My opinions are my own. I work on a number of OSS projects for work and personally in numerous languages including C++, C#, JavaScript, Go, Rust, et. al. See a problem, fix a problem (or at least create an issue)!

Avid outdoor adventurer 🏔️❄️👞🚴‍♂️, husband, father.

Comments and Discussions