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.
18 lines
337 B
18 lines
337 B
//
|
|
// autocmpl.h: provides server autocomplete functionality to an edit box
|
|
//
|
|
// Copyright Microsoft Corporation 2000
|
|
//
|
|
|
|
#ifndef _autocmpl_h_
|
|
#define _autocmpl_h_
|
|
|
|
#include "sh.h"
|
|
|
|
class CAutoCompl
|
|
{
|
|
public:
|
|
static HRESULT EnableServerAutoComplete(CTscSettings* pTscSet, HWND hwndEdit);
|
|
};
|
|
|
|
#endif //_autocmpl_h_
|