| Last change
 on this file since 998 was             989, checked in by Gregg Young, 18 years ago | 
        
          | 
Refactor fm3dll.h to create command.h; broken ini is now replaced with backup or new ini as available; more variable command line ledth changes
 | 
        
          | 
              
Property                 svn:eol-style
 set to                 native | 
        
          | File size:
            781 bytes | 
      
      
| Line |  | 
|---|
| 1 |  | 
|---|
| 2 | /*********************************************************************** | 
|---|
| 3 |  | 
|---|
| 4 | $Id: $ | 
|---|
| 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 |  | 
|---|
| 22 | VOID RunCommand(HWND hwnd, INT cx); | 
|---|
| 23 | VOID EditCommands(HWND hwnd); | 
|---|
| 24 | CHAR *command_title(INT cx); | 
|---|
| 25 | VOID load_commands(VOID); | 
|---|
| 26 |  | 
|---|
| 27 | typedef struct LINKCMDS | 
|---|
| 28 | { | 
|---|
| 29 | PSZ pszCmdLine; | 
|---|
| 30 | CHAR *title; | 
|---|
| 31 | ULONG flags; | 
|---|
| 32 | struct LINKCMDS *next; | 
|---|
| 33 | struct LINKCMDS *prev; | 
|---|
| 34 | } | 
|---|
| 35 | LINKCMDS; | 
|---|
| 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.