1 | /* |
---|
2 | * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC. |
---|
3 | * ALL RIGHTS RESERVED |
---|
4 | */ |
---|
5 | /* |
---|
6 | * Motif Release 1.2 |
---|
7 | */ |
---|
8 | /* $RCSfile: WmManage.h,v $ $Revision: 1.1.1.1 $ $Date: 1997-03-25 09:12:22 $ */ |
---|
9 | /* |
---|
10 | * (c) Copyright 1987, 1988, 1989, 1990 HEWLETT-PACKARD COMPANY */ |
---|
11 | |
---|
12 | #ifdef _NO_PROTO |
---|
13 | extern void AdoptInitialClients (); |
---|
14 | extern void ManageWindow (); |
---|
15 | extern void UnManageWindow (); |
---|
16 | extern void WithdrawTransientChildren (); |
---|
17 | extern void WithdrawWindow (); |
---|
18 | extern void ResetWithdrawnFocii (); |
---|
19 | extern void FreeClientFrame (); |
---|
20 | extern void FreeIcon (); |
---|
21 | extern void WithdrawDialog (); |
---|
22 | extern void ReManageDialog (); |
---|
23 | #else /* _NO_PROTO */ |
---|
24 | extern void AdoptInitialClients (WmScreenData *pSD); |
---|
25 | extern void ManageWindow (WmScreenData *pSD, Window clientWindow, long manageFlags); |
---|
26 | extern void UnManageWindow (ClientData *pCD); |
---|
27 | extern void WithdrawTransientChildren (ClientData *pCD); |
---|
28 | extern void WithdrawWindow (ClientData *pCD); |
---|
29 | extern void ResetWithdrawnFocii (ClientData *pCD); |
---|
30 | extern void FreeClientFrame (ClientData *pCD); |
---|
31 | extern void FreeIcon (ClientData *pCD); |
---|
32 | extern void WithdrawDialog (Widget dialogboxW); |
---|
33 | extern void ReManageDialog (WmScreenData *pSD, Widget dialogboxW); |
---|
34 | #endif /* _NO_PROTO */ |
---|