home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 5 Edit
/
05-Edit.zip
/
epm603a.zip
/
EPMMAC.ZIP
/
MINCFG.SMP
< prev
next >
Wrap
Text File
|
1992-12-18
|
3KB
|
90 lines
/* This is an attempt at putting together a minimal .ex file. Note */
/* that each configuration constant is only set if not already defined; */
/* this lets you have a MYCNF.E that contains: */
/* const */
/* MOUSE_SUPPORT = 1 -- Want mouse support */
/* include 'mincfg.smp' -- Otherwise, take the minimum defaults. */
const
compile if not defined(ALTERNATE_KEYSETS)
ALTERNATE_KEYSETS = 0 -- Omit all syntax assist
compile endif
compile if not defined(BLOCK_ACTIONBAR_ACCELERATORS)
BLOCK_ACTIONBAR_ACCELERATORS = 0 -- Implied by INCLUDE_MENU_SUPPORT
compile endif
compile if not defined(HOST_SUPPORT)
HOST_SUPPORT = '' -- No host support
compile endif
compile if not defined(INCLUDE_MENU_SUPPORT)
INCLUDE_MENU_SUPPORT = 0 -- Omit support for action bar
compile endif
compile if not defined(INCLUDE_WORKFRAME_SUPPORT)
INCLUDE_WORKFRAME_SUPPORT = 0 -- Implied by WANT_BOOKMARKS
compile endif
compile if not defined(MOUSE_SUPPORT)
MOUSE_SUPPORT = 0
compile endif
compile if not defined(SPELL_SUPPORT)
SPELL_SUPPORT = 0
compile endif
compile if not defined(SUPPORT_BOOK_ICON)
SUPPORT_BOOK_ICON = 0
compile endif
compile if not defined(VANILLA)
VANILLA = 1 -- Don't look for MY*.E files
compile endif
compile if not defined(WANT_APPLICATION_INI_FILE)
WANT_APPLICATION_INI_FILE = 0
compile endif
compile if not defined(WANT_BOOKMARKS)
WANT_BOOKMARKS = 0
compile endif
compile if not defined(WANT_DOSUTIL)
WANT_DOSUTIL = 0 -- Omit QDATE, QTIME, DIR, SET, VOL, PATH, DPATH & OS2 cmds
compile endif
compile if not defined(WANT_DRAW)
WANT_DRAW = 0
compile endif
compile if not defined(WANT_DYNAMIC_PROMPTS)
WANT_DYNAMIC_PROMPTS = 0
compile endif
compile if not defined(WANT_EBOOKIE)
WANT_EBOOKIE = 0
compile endif
compile if not defined(WANT_ET_COMMAND)
WANT_ET_COMMAND = 0
compile endif
compile if not defined(WANT_GET_ENV)
WANT_GET_ENV = 0
compile endif
compile if not defined(WANT_MATH)
WANT_MATH = 0
compile endif
; Don't need to omit this, because it contains no code:
;compile if not defined(SITE_CONFIG) -- Omit the site configuration file
; SITE_CONFIG = ''
;compile endif
compile if not defined(SITE_KEYS) -- Omit the site equivalent of MYKEYS.E
SITE_KEYS = ''
compile endif
compile if not defined(SITE_MAIN) -- Omit the site equivalent of MYMAIN.E
SITE_MAIN = ''
compile endif
compile if not defined(SITE_SELECT) -- Omit the site equivalent of MYSELECT.E
SITE_SELECT = ''
compile endif
compile if not defined(SITE_STUFF) -- Omit the site equivalent of MYSTUFF.E
SITE_STUFF = ''
compile endif
compile if not defined(SITE_KEYSET) -- Omit the site equivalent of MYKEYSET.E
SITE_KEYSET = ''
compile endif
compile if not defined(SITE_EXTRA) -- Omit the site equivalent of MYEXTRA.E
SITE_EXTRA = ''
compile endif
compile if not defined(SITE_MENUINIT) -- Omit the site equivalent of MYMNUINI.E
SITE_MENUINIT = ''
compile endif