Last change
on this file since 1187 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 |
|
---|
8 | Copyright (c) 1993-98 M. Kimes
|
---|
9 | Copyright (c) 2008 Steven H. Levine
|
---|
10 |
|
---|
11 | Change log
|
---|
12 |
|
---|
13 | ***********************************************************************/
|
---|
14 |
|
---|
15 | #if !defined(SYSTEMF_H)
|
---|
16 | #define SYSTEMF_H
|
---|
17 |
|
---|
18 | INT ExecOnList(HWND hwnd, CHAR * command, INT flags, CHAR * tpath,
|
---|
19 | CHAR ** list, CHAR * prompt, PCSZ pszCallingFile, UINT uiLineNumber);
|
---|
20 | BOOL ShowSession(HWND hwnd, PID pid);
|
---|
21 | INT 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.