source: trunk/dll/command.h@ 1015

Last change on this file since 1015 was 1015, checked in by Steven Levine, 17 years ago

Add missing svn:keyword and svn:eol-style properties

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 779 bytes
RevLine 
[989]1
2/***********************************************************************
3
[1015]4 $Id: command.h 1015 2008-05-12 01:18:01Z stevenhl $
[989]5
6 Custom commands
7
8 Copyright (c) 1993-98 M. Kimes
9 Copyright (c) 2008 Steven H. Levine
10
11 01 Mar 08 GKY Move from fm3dll.h to here
12
13***********************************************************************/
14
15#if !defined(COMMAND_H)
16#define COMMAND_H
17
18#if !defined(OS2_INCLUDED)
19#include <os2.h>
20#endif
21
22VOID RunCommand(HWND hwnd, INT cx);
23VOID EditCommands(HWND hwnd);
24CHAR *command_title(INT cx);
25VOID load_commands(VOID);
26
27typedef struct LINKCMDS
28{
29 PSZ pszCmdLine;
30 CHAR *title;
31 ULONG flags;
32 struct LINKCMDS *next;
33 struct LINKCMDS *prev;
34}
35LINKCMDS;
36
37// 01 Mar 08 GKY fixme for command.c globals to be here
38
39#ifdef DEFINE_GLOBALS
40#pragma data_seg(GLOBAL1)
41#endif
42
43#endif // COMMAND_H
Note: See TracBrowser for help on using the repository browser.