| * Window classes definitions |
| * Copyright 1993 Alexandre Julliard |
| #define CLASS_MAGIC 0x4b4e /* 'NK' */ |
| /* !! Don't change this structure (see GetClassLong()) */ |
| HCLASS hNext; /* Next class */ |
| WORD wMagic; /* Magic number (must be CLASS_MAGIC) */ |
| ATOM atomName; /* Name of the class */ |
| HANDLE hdce; /* Class DCE (if CS_CLASSDC) */ |
| WORD cWindows; /* Count of existing windows of this class */ |
| WNDCLASS wc WINE_PACKED; /* Class information */ |
| WORD wExtra[1]; /* Class extra bytes */ |
| HCLASS CLASS_FindClassByName( SEGPTR name, HINSTANCE hinstance, CLASS **ptr ); |
| CLASS * CLASS_FindClassPtr( HCLASS hclass ); |