vkdoom_m/src/common/console/c_tabcomplete.h
Christoph Oelckers ef7a7cc39d - moved console command line buffer tab completion into their own files.
- layout fixes in load/save menu and confirmation screen.
2020-10-16 22:57:30 +02:00

9 lines
333 B
C

#pragma once
void C_AddTabCommand (const char *name);
void C_RemoveTabCommand (const char *name);
void C_ClearTabCommands(); // Removes all tab commands
void C_TabComplete(bool goForward);
bool C_TabCompleteList();
extern bool TabbedLast; // True if last key pressed was tab
extern bool TabbedList; // True if tab list was shown