Ignore:
Timestamp:
Nov 16, 2000, 7:02:31 PM (25 years ago)
Author:
sandervl
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/winuser.h

    r4495 r4604  
    1 /* $Id: winuser.h,v 1.42 2000-10-17 17:14:32 sandervl Exp $ */
     1/* $Id: winuser.h,v 1.43 2000-11-16 18:02:31 sandervl Exp $ */
    22
    33#ifndef __INCLUDE_WINUSER_H
     
    22412241#define SPIF_SENDWININICHANGE           2
    22422242#define SPIF_SENDCHANGE                 SPIF_SENDWININICHANGE
     2243
     2244
     2245typedef struct {
     2246        UINT            cbSize;
     2247        INT             iBorderWidth;
     2248        INT             iScrollWidth;
     2249        INT             iScrollHeight;
     2250        INT             iCaptionWidth;
     2251        INT             iCaptionHeight;
     2252        LOGFONTA        lfCaptionFont;
     2253        INT             iSmCaptionWidth;
     2254        INT             iSmCaptionHeight;
     2255        LOGFONTA        lfSmCaptionFont;
     2256        INT             iMenuWidth;
     2257        INT             iMenuHeight;
     2258        LOGFONTA        lfMenuFont;
     2259        LOGFONTA        lfStatusFont;
     2260        LOGFONTA        lfMessageFont;
     2261} NONCLIENTMETRICSA,*LPNONCLIENTMETRICSA;
     2262
     2263typedef struct {
     2264        UINT            cbSize;
     2265        INT             iBorderWidth;
     2266        INT             iScrollWidth;
     2267        INT             iScrollHeight;
     2268        INT             iCaptionWidth;
     2269        INT             iCaptionHeight;
     2270        LOGFONTW        lfCaptionFont;
     2271        INT             iSmCaptionWidth;
     2272        INT             iSmCaptionHeight;
     2273        LOGFONTW        lfSmCaptionFont;
     2274        INT             iMenuWidth;
     2275        INT             iMenuHeight;
     2276        LOGFONTW        lfMenuFont;
     2277        LOGFONTW        lfStatusFont;
     2278        LOGFONTW        lfMessageFont;
     2279} NONCLIENTMETRICSW,*LPNONCLIENTMETRICSW;
     2280
     2281DECL_WINELIB_TYPE_AW(NONCLIENTMETRICS)
     2282DECL_WINELIB_TYPE_AW(LPNONCLIENTMETRICS)
     2283
     2284typedef struct tagICONMETRICSA {
     2285    UINT cbSize;
     2286    int iHorzSpacing;
     2287    int iVertSpacing;
     2288    int iTitleWrap;
     2289    LOGFONTA lfFont;
     2290} ICONMETRICSA, *PICONMETRICSA, *LPICONMETRICSA;
     2291
     2292typedef struct tagICONMETRICSW {
     2293    UINT cbSize;
     2294    int iHorzSpacing;
     2295    int iVertSpacing;
     2296    int iTitleWrap;
     2297    LOGFONTW lfFont;
     2298} ICONMETRICSW, *PICONMETRICSW, *LPICONMETRICSW;
     2299
     2300DECL_WINELIB_TYPE_AW(ICONMETRICS)
     2301DECL_WINELIB_TYPE_AW(PICONMETRICS)
     2302DECL_WINELIB_TYPE_AW(LPICONMETRICS)
    22432303
    22442304/* Window Styles */
Note: See TracChangeset for help on using the changeset viewer.