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.
33 lines
808 B
33 lines
808 B
/**********************************************************************/
|
|
/** Microsoft Windows/NT **/
|
|
/** Copyright(c) Microsoft Corporation, 1997-1999 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
snmclist.h
|
|
snmp community list control
|
|
|
|
FILE HISTORY:
|
|
|
|
*/
|
|
|
|
#ifndef _SNMPCLISTH_
|
|
#define _SNMPCLISTH_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
class CCommList : public CListCtrl
|
|
{
|
|
public:
|
|
int InsertString( int nIndex, LPCTSTR lpszItem );
|
|
int SetCurSel( int nSelect );
|
|
int GetCurSel( ) const;
|
|
void GetText( int nIndex, CString& rString ) const;
|
|
int DeleteString( UINT nIndex );
|
|
int GetCount( ) const;
|
|
void OnInitList();
|
|
};
|
|
|
|
#endif
|