Leaked source code of windows server 2003
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.
 
 
 
 
 
 

43 lines
813 B

/*++
Copyright (C) 1996-1999 Microsoft Corporation
Module Name:
INTERFACE.H
History:
--*/
//
// Various public interfaces in Espresso.
//
#pragma once
extern const LTAPIENTRY IID IID_ILocStringValidation;
class CLocTranslation;
DECLARE_INTERFACE_(ILocStringValidation, IUnknown)
{
//
// IUnknown standard Interface
//
STDMETHOD(QueryInterface)(THIS_ REFIID riid, LPVOID FAR*ppvObj) PURE;
STDMETHOD_(ULONG, AddRef)(THIS) PURE;
STDMETHOD_(ULONG, Release)(THIS) PURE;
//
// Standard Debugging interfaces
//
STDMETHOD_(void, AssertValidInterface)(THIS) CONST_METHOD PURE;
STDMETHOD_(CVC::ValidationCode, ValidateString)
(THIS_ const CLocTypeId REFERENCE, const CLocTranslation REFERENCE,
CReporter *, const CContext &) PURE;
};