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
390 B
26 lines
390 B
/*
|
|
* File: intif.h
|
|
*
|
|
*
|
|
*
|
|
* Revision History:
|
|
*
|
|
* 05/06/96 mikev created
|
|
*/
|
|
|
|
|
|
#ifndef _INTIF_H
|
|
#define _INTIF_H
|
|
|
|
//
|
|
// Internal interface classes
|
|
//
|
|
class IConfAdvise;
|
|
class IControlChannel;
|
|
class IH323PubCap;
|
|
|
|
typedef IControlChannel *LPIControlChannel;
|
|
typedef IConfAdvise* LPIConfAdvise;
|
|
typedef IH323PubCap *LPIH323PubCap;
|
|
|
|
#endif //_INTIF_H
|