mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 05:59:43 +00:00
[CONSRV] Tidy up lineinput.c by moving the History* helper prototypes to a suitable header file.
This commit is contained in:
parent
98b58df2bf
commit
e624be1eb2
2 changed files with 27 additions and 23 deletions
|
@ -8,6 +8,32 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
VOID
|
||||||
|
HistoryAddEntry(PCONSRV_CONSOLE Console,
|
||||||
|
PUNICODE_STRING ExeName,
|
||||||
|
PUNICODE_STRING Entry);
|
||||||
|
|
||||||
|
BOOL
|
||||||
|
HistoryFindEntryByPrefix(PCONSRV_CONSOLE Console,
|
||||||
|
PUNICODE_STRING ExeName,
|
||||||
|
PUNICODE_STRING Prefix,
|
||||||
|
PUNICODE_STRING Entry);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
HistoryGetCurrentEntry(PCONSRV_CONSOLE Console,
|
||||||
|
PUNICODE_STRING ExeName,
|
||||||
|
PUNICODE_STRING Entry);
|
||||||
|
|
||||||
|
BOOL
|
||||||
|
HistoryRecallHistory(PCONSRV_CONSOLE Console,
|
||||||
|
PUNICODE_STRING ExeName,
|
||||||
|
INT Offset,
|
||||||
|
PUNICODE_STRING Entry);
|
||||||
|
|
||||||
|
VOID
|
||||||
|
HistoryDeleteCurrentBuffer(PCONSRV_CONSOLE Console,
|
||||||
|
PUNICODE_STRING ExeName);
|
||||||
|
|
||||||
VOID HistoryDeleteBuffers(PCONSRV_CONSOLE Console);
|
VOID HistoryDeleteBuffers(PCONSRV_CONSOLE Console);
|
||||||
|
|
||||||
VOID
|
VOID
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
/* INCLUDES *******************************************************************/
|
/* INCLUDES *******************************************************************/
|
||||||
|
|
||||||
#include "consrv.h"
|
#include "consrv.h"
|
||||||
|
#include "history.h"
|
||||||
#include "popup.h"
|
#include "popup.h"
|
||||||
|
|
||||||
#define NDEBUG
|
#define NDEBUG
|
||||||
|
@ -31,29 +32,6 @@ ConvertInputUnicodeToAnsi(PCONSRV_CONSOLE Console,
|
||||||
/*P*/USHORT TargetLength);
|
/*P*/USHORT TargetLength);
|
||||||
|
|
||||||
|
|
||||||
VOID
|
|
||||||
HistoryAddEntry(PCONSRV_CONSOLE Console,
|
|
||||||
PUNICODE_STRING ExeName,
|
|
||||||
PUNICODE_STRING Entry);
|
|
||||||
BOOL
|
|
||||||
HistoryRecallHistory(PCONSRV_CONSOLE Console,
|
|
||||||
PUNICODE_STRING ExeName,
|
|
||||||
INT Offset,
|
|
||||||
PUNICODE_STRING Entry);
|
|
||||||
VOID
|
|
||||||
HistoryGetCurrentEntry(PCONSRV_CONSOLE Console,
|
|
||||||
PUNICODE_STRING ExeName,
|
|
||||||
PUNICODE_STRING Entry);
|
|
||||||
VOID
|
|
||||||
HistoryDeleteCurrentBuffer(PCONSRV_CONSOLE Console,
|
|
||||||
PUNICODE_STRING ExeName);
|
|
||||||
BOOL
|
|
||||||
HistoryFindEntryByPrefix(PCONSRV_CONSOLE Console,
|
|
||||||
PUNICODE_STRING ExeName,
|
|
||||||
PUNICODE_STRING Prefix,
|
|
||||||
PUNICODE_STRING Entry);
|
|
||||||
|
|
||||||
|
|
||||||
/* PRIVATE FUNCTIONS **********************************************************/
|
/* PRIVATE FUNCTIONS **********************************************************/
|
||||||
|
|
||||||
static VOID
|
static VOID
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue