source: trunk/dll/systemf.h@ 1194

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

Ticket 187: Draft 2: Move remaining function declarations

File size: 1.2 KB
Line 
1
2/***********************************************************************
3
4$Id: $
5
6<<<description here>>>
7
8Copyright (c) 1993-98 M. Kimes
9Copyright (c) 2008 Steven H. Levine
10
11Change log
12
13***********************************************************************/
14
15#if !defined(SYSTEMF_H)
16#define SYSTEMF_H
17
18INT ExecOnList(HWND hwnd, CHAR * command, INT flags, CHAR * tpath,
19 CHAR ** list, CHAR * prompt, PCSZ pszCallingFile, UINT uiLineNumber);
20BOOL ShowSession(HWND hwnd, PID pid);
21INT runemf2(INT type, HWND hwnd, PCSZ pszCallingFile, UINT uiLineNumber,
22 CHAR * directory, CHAR * environment,
23 CHAR * formatstring, ...);
24
25#define RUNTYPE_MASK 0xf
26#define SYNCHRONOUS 1
27#define ASYNCHRONOUS 2
28#define DETACHED 3
29#define SEPARATE 4
30#define SEPARATEKEEP 5
31#define WINDOWED 16
32#define MAXIMIZED 32
33#define MINIMIZED 64
34#define FULLSCREEN 128
35#define INVISIBLE 256
36#define BACKGROUND 512
37#define WAIT 1024
38#define PROMPT 2048
39#define KEEP 4096
40#define ONCE 8192
41#define DIEAFTER 16384
42#define SEAMLESS 32768
43#define CHILD 65536
44
45
46
47#endif // SYSTEMF_H
Note: See TracBrowser for help on using the repository browser.