Last change
on this file since 1570 was 1301, checked in by Gregg Young, 17 years ago |
Add flag to tell CheckListProc file is in an archive so it won't try to open it. (Ticket 283) Part of remove or replace with a mutex semaphore DosEnterCriSec where appropriate. (Ticket 308)
|
-
Property svn:eolstyle
set to
native
-
Property svn:keywords
set to
Id
|
File size:
1012 bytes
|
Line | |
---|
1 |
|
---|
2 | /***********************************************************************
|
---|
3 |
|
---|
4 | $Id: chklist.h 1301 2008-11-30 05:25:27Z gyoung $
|
---|
5 |
|
---|
6 | <<description here>>
|
---|
7 |
|
---|
8 | Copyright (c) 1993-98 M. Kimes
|
---|
9 | Copyright (c) 2001, 2008 Steven H. Levine
|
---|
10 |
|
---|
11 | 05 Sep 08 JBS Ticket 187: Refactor FM3DLL.H
|
---|
12 | 29 Nov 08 GKY Add flag to tell CheckListProc file is in an archive so it won't try to open it.
|
---|
13 |
|
---|
14 | ***********************************************************************/
|
---|
15 |
|
---|
16 | #if !defined(CHKLIST_H)
|
---|
17 |
|
---|
18 | #define CHKLIST_H
|
---|
19 |
|
---|
20 | #define CHECK_FILES 1 //CHECKLIST flag
|
---|
21 | #define CHECK_ARCHIVE 2 //CHECKLIST flag file in archive
|
---|
22 |
|
---|
23 | typedef struct
|
---|
24 | {
|
---|
25 | USHORT size;
|
---|
26 | ULONG flags;
|
---|
27 | ULONG cmd;
|
---|
28 | USHORT dummy;
|
---|
29 | CHAR *prompt;
|
---|
30 | CHAR **list;
|
---|
31 | }
|
---|
32 | CHECKLIST;
|
---|
33 |
|
---|
34 | VOID CenterOverWindow(HWND hwnd);
|
---|
35 | MRESULT EXPENTRY CheckListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
36 | MRESULT EXPENTRY DropListProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
37 | BOOL PopupMenu(HWND hwndParent, HWND hwndOwner, HWND hwndMenu);
|
---|
38 | VOID PosOverOkay(HWND hwnd);
|
---|
39 |
|
---|
40 | #endif // CHKLIST_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.