mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
1c65a5e68a
clang-cl 10:
'.../Completion.h(4,2): warning: 'COMLPETION_H__INCLUDED_' is used as a header guard here, followed by #define of a different macro [-Wheader-guard]'
Addendum to bf1b057
(r1507).
CORE-14306
17 lines
612 B
C
17 lines
612 B
C
//
|
|
// Completion.h - declaration for completion related functions
|
|
|
|
#if !defined(COMPLETION_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
|