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
732 B
26 lines
732 B
//
|
|
// Copyright 2001 - Microsoft Corporation
|
|
//
|
|
//
|
|
// Created By:
|
|
// Geoff Pease (GPease) 29-JAN-2001
|
|
//
|
|
// Maintained By:
|
|
// Geoff Pease (GPease) 29-JAN-2001
|
|
//
|
|
#pragma once
|
|
|
|
MIDL_INTERFACE("001152da-77b2-463c-b234-0a6febe818fa")
|
|
IEditVariantsInPlace
|
|
: public IUnknown
|
|
{
|
|
public:
|
|
STDMETHOD( Initialize )( HWND hwndParentIn
|
|
, UINT uCodePageIn
|
|
, RECT * prectIn
|
|
, IPropertyUI * ppuiIn
|
|
, PROPVARIANT * ppropvarIn
|
|
, DEFVAL * pDefValsIn
|
|
) PURE;
|
|
STDMETHOD( Persist )( VARTYPE vtIn, PROPVARIANT * ppropvarInout ) PURE;
|
|
};
|