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.
 
 
 
 
 
 

41 lines
1007 B

//+------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1993.
//
// File: bm_regis.hxx
//
// Contents: test class definition
//
// Classes: COleRegistrationTest
//
// Functions:
//
// History: 19-July-93 t-martig Created
//
//--------------------------------------------------------------------------
#ifndef _BM_REGIS_HXX_
#define _BM_REGIS_HXX_
#include <bm_base.hxx>
class COleRegistrationTest : public CTestBase
{
public:
virtual TCHAR *Name ();
virtual SCODE Setup (CTestInput *input);
virtual SCODE Run ();
virtual SCODE Report (CTestOutput &OutputFile);
virtual SCODE Cleanup ();
private:
ULONG m_ulIterations;
CLSID m_Clsid[CNT_CLSCTX];
IClassFactory *m_apICF[CNT_CLSCTX];
ULONG m_ulRegisterCtx[CNT_CLSCTX][TEST_MAX_ITERATIONS];
ULONG m_ulRevokeCtx[CNT_CLSCTX][TEST_MAX_ITERATIONS];
};
#endif