Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / modules / rosapps / applications / sysutils / regexpl / Completion.h
1 //
2 // Completion.h - declaration for completion related functions
3
4 #if !defined(COMLPETION_H__INCLUDED_)
5 #define COMPLETION_H__INCLUDED_
6
7 typedef const TCHAR * (*ReplaceCompletionCallback)(unsigned __int64& rnIndex, const BOOL *pblnForward,
8 const TCHAR *pchContext, const TCHAR *pchBegin);
9
10 extern const TCHAR * CompletionCallback(unsigned __int64 & rnIndex,
11 const BOOL *pblnForward,
12 const TCHAR *pchContext,
13 const TCHAR *pchBegin);
14
15 extern void InvalidateCompletion();
16 #endif