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.
20 lines
477 B
20 lines
477 B
//******************************************************************************
|
|
//
|
|
// TEMPBIND.H
|
|
//
|
|
// Copyright (C) 2000 Microsoft Corporation
|
|
//
|
|
//******************************************************************************
|
|
#ifndef __WMI_ESS_TEMP_BINDING__H_
|
|
#define __WMI_ESS_TEMP_BINDING__H_
|
|
|
|
#include "binding.h"
|
|
#include "fastall.h"
|
|
|
|
class CTempBinding : public CBinding
|
|
{
|
|
public:
|
|
CTempBinding( long lFlags, WMIMSG_QOS_FLAG lQosFlags, bool bSecure );
|
|
};
|
|
|
|
#endif
|