fix typos.
[reactos.git] / rosapps / sysutils / regexpl / Completion.h
1 /* $Id$ */
2
3 // Completion.h - declaration for completion related functions
4
5 #if !defined(COMLPETION_H__INCLUDED_)
6 #define COMPLETION_H__INCLUDED_
7
8 typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, const BOOL *pblnForward,
9 const TCHAR *pchContext, const TCHAR *pchBegin);
10
11 extern const TCHAR * CompletionCallback(unsigned __int64 & rnIndex,
12 const BOOL *pblnForward,
13 const TCHAR *pchContext,
14 const TCHAR *pchBegin);
15
16 extern void InvalidateCompletion();
17 #endif