You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
698 B
26 lines
698 B
/*
|
|
* snapinlist.hxx
|
|
*
|
|
*
|
|
* Copyright (c) 1998 Microsoft Corporation
|
|
*
|
|
* PURPOSE: Stores a list of all snapins.
|
|
*
|
|
*
|
|
* OWNER: vivekj
|
|
*/
|
|
|
|
//--------------------------------------------------------------
|
|
// This file contains a list of all the snapins in the project.
|
|
// To use this file, #define the DECLARE_SNAPIN macro and
|
|
// #include this file. The DECLARE_SNAPIN macro is
|
|
// automatically #undef'd at the end.
|
|
//--------------------------------------------------------------
|
|
|
|
#ifndef DECLARE_SNAPIN
|
|
#error Must define DECLARE_SNAPIN before #including snapinlist.h
|
|
#endif
|
|
|
|
DECLARE_SNAPIN(CSampleSnapin)
|
|
|
|
#undef DECLARE_SNAPIN
|