mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
456be5d16b
svn path=/trunk/; revision=15091
18 lines
621 B
C
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
|