mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
bf1b057da3
svn path=/trunk/; revision=1507
18 lines
675 B
C
18 lines
675 B
C
/* $Id: Completion.h,v 1.2 2001/01/13 23:54:07 narnaoud Exp $ */
|
|
|
|
// 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
|