mirror of https://github.com/tongzx/nt5src
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.
30 lines
847 B
30 lines
847 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 2000
|
|
//
|
|
// File:
|
|
// privguid.c
|
|
//
|
|
// Contents:
|
|
// Definition of guids not defined elsewhere, or that are needed by
|
|
// third-parties (eg COM+) via prvidl.lib.
|
|
//
|
|
// History:
|
|
// JSimmons 01-03-00 Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#include <windows.h>
|
|
#include <initguid.h>
|
|
|
|
// Note: these two guids are defined in ole32\ih\privguid.h.
|
|
|
|
// RPCSS's info object
|
|
DEFINE_OLEGUID(CLSID_RPCSSInfo, 0x000003FF, 0, 0);
|
|
|
|
// Actpropsin clsid.
|
|
DEFINE_OLEGUID(CLSID_ActivationPropertiesIn, 0x00000338, 0, 0);
|
|
|
|
// ComActivator clsid
|
|
DEFINE_OLEGUID(CLSID_ComActivator, 0x0000033c, 0, 0);
|