2005-05-07 21:24:31 +00:00
|
|
|
/* $Id$ */
|
2001-01-10 01:25:29 +00:00
|
|
|
|
|
|
|
// Completion.h - declaration for completion related functions
|
|
|
|
|
2001-01-13 23:55:37 +00:00
|
|
|
#if !defined(COMLPETION_H__INCLUDED_)
|
|
|
|
#define COMPLETION_H__INCLUDED_
|
2001-01-10 01:25:29 +00:00
|
|
|
|
|
|
|
typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, const BOOL *pblnForward,
|
|
|
|
const TCHAR *pchContext, const TCHAR *pchBegin);
|
|
|
|
|
|
|
|
extern const TCHAR * CompletionCallback(unsigned __int64 & rnIndex,
|
|
|
|
const BOOL *pblnForward,
|
|
|
|
const TCHAR *pchContext,
|
|
|
|
const TCHAR *pchBegin);
|
|
|
|
|
|
|
|
extern void InvalidateCompletion();
|
|
|
|
#endif
|