Click here to Skip to main content
15,895,011 members
Articles / Programming Languages / C++

A Namespace Extension Toolkit

Rate me:
Please Sign up or sign in to vote.
4.78/5 (10 votes)
21 Mar 2006CPOL12 min read 84.9K   1.7K   42  
This article shows you how to build your own Windows Explorer interfaces to custom data.
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#pragma once
#define UNICODE
#define _UNICODE

#define WIN32_LEAN_AND_MEAN		// Exclude rarely-used stuff from Windows headers

#include <windows.h>
#include <wtypes.h>
#include <stdlib.h>
#include <vector>
#include <atlbase.h>
#include <atlcom.h>
#include <atlwin.h>
#include <atlutil.h>
#include <tchar.h>
#include <shtypes.h>
#include <shlobj.h>
#include <shobjidl.h>
#include <objidl.h>
#include <ocidl.h>
#include <wtypes.h>
#include <comdef.h>
#include <shlguid.h> 
#include <shellapi.h>
#include <windows.h>
#include <atlfile.h>

extern ATL::CTraceCategory atlTraceReadOp;
extern ATL::CTraceCategory atlTraceWriteOp;
extern ATL::CTraceCategory atlTraceGalaxy;
extern ATL::CTraceCategory atlTraceGalaxy2;
extern ATL::CTraceCategory atlTraceGalaxy3;

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions