/*********************************************************************** $Id: command.h 1029 2008-06-23 01:30:16Z gyoung $ Custom commands Copyright (c) 1993-98 M. Kimes Copyright (c) 2008 Steven H. Levine 01 Mar 08 GKY Move from fm3dll.h to here 22 Jun 08 GKY Moved free_commands here for fortify checking ***********************************************************************/ #if !defined(COMMAND_H) #define COMMAND_H #if !defined(OS2_INCLUDED) #include #endif VOID RunCommand(HWND hwnd, INT cx); VOID EditCommands(HWND hwnd); CHAR *command_title(INT cx); VOID load_commands(VOID); VOID free_commands(VOID); typedef struct LINKCMDS { PSZ pszCmdLine; CHAR *title; ULONG flags; struct LINKCMDS *next; struct LINKCMDS *prev; } LINKCMDS; // 01 Mar 08 GKY fixme for command.c globals to be here #ifdef DEFINE_GLOBALS #pragma data_seg(GLOBAL1) #endif #endif // COMMAND_H