reactos/rosapps/sysutils/regexpl/Completion.h
Steven Edwards 456be5d16b remove trailing whitespace at end of lines
svn path=/trunk/; revision=15091
2005-05-07 21:24:31 +00:00

18 lines
621 B
C

/* $Id$ */
// Completion.h - declaration for completion related functions
#if !defined(COMLPETION_H__INCLUDED_)
#define COMPLETION_H__INCLUDED_
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