2025-04-27 07:49:33 -04:00

39 lines
1.1 KiB
Plaintext

// **************************************************************************
// Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
//
// File: Methprov.mof
//
// Description:
//
// History:
//
// **************************************************************************
/////////////////////////////////////////////////////////////////////
// Register the provider.
instance of __Win32Provider as $P
{
Name = "MethProv" ;
ClsId = "{E30EC6A0-23CF-11d1-8FDE-0000F804AA5C}" ;
};
instance of __MethodProviderRegistration
{
Provider = $P;
};
/////////////////////////////////////////////////////////////////////
//
// Declare a class whose methods are executed by the sample provider.
[dynamic: ToInstance, provider("MethProv")]class MethProvSamp
{
[implemented, static]
uint32 Echo([IN]string sInArg="default", [out] string sOutArg);
};