]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: private.h | |
3 | // Purpose: Private declarations | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_PRIVATE_H_ | |
13 | #define _WX_PRIVATE_H_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | ||
17 | /* Put any private declarations here. | |
18 | */ | |
19 | ||
20 | extern void wxWidgetResizeProc(Widget w, XConfigureEvent *event, String args[], int *num_args); | |
21 | ||
22 | extern wxHashTable *wxWidgetHashTable; | |
23 | extern void wxDeleteWindowFromTable(Widget w); | |
24 | extern wxWindow *wxGetWindowFromTable(Widget w); | |
25 | extern bool wxAddWindowToTable(Widget w, wxWindow *win); | |
26 | ||
27 | #endif | |
28 | // _WX_PRIVATE_H_ |