source: trunk/dll/notebook.h@ 1083

Last change on this file since 1083 was 1083, checked in by John Small, 17 years ago

Ticket 114: Support user-selectable env. strings in Tree container.

File size: 1.1 KB
RevLine 
[953]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
[985]12 29 Feb 08 GKY Refactor global command line variables to notebook.h
[1083]13 20 Jul 08 JBS Ticket 114: Support user-selectable env. strings in Tree container.
[953]14
15***********************************************************************/
16
17#if !defined(NOTEBOOK_H)
18#define NOTEBOOK_H
19
20#if !defined(OS2_INCLUDED)
21#define INCL_LONGLONG
22#include <os2.h>
23#else
24#if !defined(INCL_LONGLONG)
25#error INCL_LONGLONG required by grep.h
26#endif
27#endif
28
29MRESULT EXPENTRY CfgDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
30
31VOID CfgMenuInit(HWND hwndMenu, BOOL fIsLite);
32
[985]33#ifdef DEFINE_GLOBALS
34#define DATADEF
35#else
36#define DATADEF extern
37#endif
38
39DATADEF CHAR *editor, *viewer, *virus, *compare, *binview, *bined,
[1083]40 *dircompare, *ftprun, *httprun, *mailrun, *pszTreeEnvVarList;
[985]41DATADEF CHAR ftprundir[CCHMAXPATH], httprundir[CCHMAXPATH],
42 mailrundir[CCHMAXPATH], targetdir[CCHMAXPATH];
43
[953]44#endif // NOTEBOOK_H
Note: See TracBrowser for help on using the repository browser.