listifc.h
资源名称:h323.zip [点击查看]
上传用户:hnnddl
上传日期:2007-01-06
资源大小:3580k
文件大小:2k
源码类别:
IP电话/视频会议
开发平台:
WINDOWS
- /*
- * $Revision: 1.5 $
- * $Date: 1997/09/24 18:03:19 $
- */
- ////////////////////////////////////////////////////////////////
- // Copyright (c) 1996,97 Lucent Technologies //
- // All Rights Reserved //
- // //
- // THIS IS UNPUBLISHED //
- // PROPRIETARY SOURCE //
- // CODE OF Lucent Technologies //
- // AND elemedia //
- // //
- // The copyright notice above does not evidence any //
- // actual or intended publication of such source code//
- ////////////////////////////////////////////////////////////////
- //
- ////////////////////////////////////////////////////////////////
- // File : Listifc.h //
- // //
- // //
- // History: //
- // 13_Nov_1996 Created //
- // 28_Jul_1997 Removed stamp variable. //
- // 17_Sept_1997 Removed dummy implementation for Match. //
- // //
- ////////////////////////////////////////////////////////////////
- #if !defined(__LISTIFC_H__)
- #define __LISTIFC_H__
- #include "platform.h"
- class DLLEXPORT ListElementInterface
- {
- public:
- // return 0 if there is a match,
- // return > 0 if "key" is > this->key
- // return < 0 if "key" is < this->key
- virtual int Match(void *key, unsigned long key_type) = 0;
- };
- #endif // __LISTIFC_H__