1 |
|
---|
2 | /***********************************************************************
|
---|
3 |
|
---|
4 | $Id: common.h 1400 2009-03-08 17:50:25Z gyoung $
|
---|
5 |
|
---|
6 | <<<description here>>>
|
---|
7 |
|
---|
8 | Copyright (c) 1993-98 M. Kimes
|
---|
9 | Copyright (c) 2008 Steven H. Levine
|
---|
10 |
|
---|
11 | Change log
|
---|
12 | 08 Mar 09 GKY Additional strings move to PCSZs in init.c (Declare changes)
|
---|
13 |
|
---|
14 | ***********************************************************************/
|
---|
15 |
|
---|
16 | #if !defined(COMMON_H)
|
---|
17 | #define COMMON_H
|
---|
18 |
|
---|
19 | MRESULT EXPENTRY CommonCnrProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
20 | void CommonCreateMainChildren(HWND hwnd, SWP * swp);
|
---|
21 | void CommonCreateTextChildren(HWND hwnd, PCSZ class, USHORT * ids);
|
---|
22 | void CommonDriveCmd(HWND hwnd, char *drive, USHORT cmd);
|
---|
23 | MRESULT EXPENTRY CommonFrameWndProc(USHORT id,
|
---|
24 | HWND hwnd,
|
---|
25 | ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
26 | MRESULT EXPENTRY CommonMainWndProc(HWND hwnd, ULONG msg, MPARAM mp1,
|
---|
27 | MPARAM mp2);
|
---|
28 | MRESULT EXPENTRY CommonTextButton(HWND hwnd, ULONG msg, MPARAM mp1,
|
---|
29 | MPARAM mp2);
|
---|
30 | void CommonTextPaint(HWND hwnd, HPS hps);
|
---|
31 | MRESULT EXPENTRY CommonTextProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
|
---|
32 | VOID DecrThreadUsage(VOID);
|
---|
33 | VOID IncrThreadUsage(VOID);
|
---|
34 | HWND OpenDirCnr(HWND hwnd, HWND hwndParent, HWND hwndRestore,
|
---|
35 | BOOL noautotile, char *directory);
|
---|
36 |
|
---|
37 | // Data declarations
|
---|
38 | extern HWND hwndBack;
|
---|
39 |
|
---|
40 | #endif // COMMON_H
|
---|