source: trunk/include/win/static.h@ 4

Last change on this file since 4 was 4, checked in by ktk, 26 years ago

Import

File size: 626 bytes
Line 
1/* $Id: static.h,v 1.1 1999-05-24 20:19:19 ktk Exp $ */
2
3/*
4 * Static-class extra info
5 *
6 * Copyright 1994 Alexandre Julliard
7 */
8
9#ifndef __WINE_STATIC_H
10#define __WINE_STATIC_H
11
12#include "windef.h"
13
14 /* Extra info for STATIC windows */
15typedef struct
16{
17 HFONT16 hFont; /* Control font (or 0 for system font) */
18 WORD dummy; /* Don't know what MS-Windows puts in there */
19 HICON16 hIcon; /* Icon handle for SS_ICON controls */
20} STATICINFO;
21
22extern LRESULT WINAPI StaticWndProc( HWND hWnd, UINT uMsg, WPARAM wParam,
23 LPARAM lParam );
24
25#endif /* __WINE_STATIC_H */
Note: See TracBrowser for help on using the repository browser.