Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.

This commit is contained in:
Colin Finck 2017-10-03 07:45:34 +00:00
parent b94e2d8ca0
commit c2c66aff7d
24198 changed files with 0 additions and 37285 deletions

23
sdk/tools/log2lines/cmd.h Normal file
View file

@ -0,0 +1,23 @@
/*
* ReactOS log2lines
* Written by Jan Roeloffzen
*
* - Cli for escape commands
*/
#pragma once
#include <stdio.h>
#define KDBG_BS_CHAR 0x08
#define KDBG_ESC_CHAR '`'
#define KDBG_ESC_STR "`"
#define KDBG_ESC_RESP "| L2L- "
#define KDBG_ESC_OFF "off"
#define KDBG_PROMPT "kdb:>" //Start interactive (-c) after this pattern
#define KDBG_CONT "---" //Also after this pattern (prompt with no line ending)
#define KDBG_DISCARD "Command '" KDBG_ESC_STR //Discard responses at l2l escape commands
char handle_escape_cmd(FILE *outFile, char *Line, char *path, char *LineOut);
/* EOF */