source: trunk/dll/notebook.h@ 1036

Last change on this file since 1036 was 985, checked in by Gregg Young, 17 years ago

Update sizes dialog (ticket 44); Make max command line length user settable (ticket 199); use xfree for free in most cases (ticket 212); initial code to check for valid ini file (ticket 102); Some additional refactoring and structure rework; Some documentation updates;

File size: 1.0 KB
Line 
1
2/***********************************************************************
3
4 $Id: notebook.h $
5
6 Configuration notebook
7
8 Copyright (c) 1993-98 M. Kimes
9 Copyright (c) 2008 Steven H. Levine
10
11 14 Feb 08 SHL Refactor from fm3dll.h
12 29 Feb 08 GKY Refactor global command line variables to notebook.h
13
14***********************************************************************/
15
16#if !defined(NOTEBOOK_H)
17#define NOTEBOOK_H
18
19#if !defined(OS2_INCLUDED)
20#define INCL_LONGLONG
21#include <os2.h>
22#else
23#if !defined(INCL_LONGLONG)
24#error INCL_LONGLONG required by grep.h
25#endif
26#endif
27
28MRESULT EXPENTRY CfgDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
29
30VOID CfgMenuInit(HWND hwndMenu, BOOL fIsLite);
31
32#ifdef DEFINE_GLOBALS
33#define DATADEF
34#else
35#define DATADEF extern
36#endif
37
38DATADEF CHAR *editor, *viewer, *virus, *compare, *binview, *bined,
39 *dircompare, *ftprun, *httprun, *mailrun;
40DATADEF CHAR ftprundir[CCHMAXPATH], httprundir[CCHMAXPATH],
41 mailrundir[CCHMAXPATH], targetdir[CCHMAXPATH];
42
43#endif // NOTEBOOK_H
Note: See TracBrowser for help on using the repository browser.