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.
42 lines
1.1 KiB
42 lines
1.1 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1997.
|
|
//
|
|
// File: pvarset.hxx
|
|
//
|
|
// Contents: PVariableSet base class.
|
|
//
|
|
// History: 3-04-97 srikants Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
class CVariable;
|
|
|
|
//+---------------------------------------------------------------------------
|
|
//
|
|
// Class: PVariableSet
|
|
//
|
|
// Purpose: An abstract base class for keeping track of a set of named
|
|
// variables.
|
|
//
|
|
// History: 3-04-97 srikants Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
class PVariableSet
|
|
{
|
|
|
|
public:
|
|
|
|
virtual CVariable * SetVariable( WCHAR const * wcsName,
|
|
PROPVARIANT const *pVariant,
|
|
ULONG ulFlags ) = 0;
|
|
|
|
virtual void SetVariable( WCHAR const * wcsName,
|
|
XArray<WCHAR> & xValue ) = 0;
|
|
};
|
|
|
|
|