mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
2012315e5a
svn path=/trunk/; revision=34303
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
|