Ignore:
Timestamp:
Feb 3, 2000, 2:26:23 PM (26 years ago)
Author:
sandervl
Message:

header updates

File:
1 edited

Legend:

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

    r1546 r2606  
    1 /* $Id: shlobj.h,v 1.4 1999-11-02 19:06:43 sandervl Exp $ */
     1/* $Id: shlobj.h,v 1.5 2000-02-03 13:26:23 sandervl Exp $ */
    22#ifndef __WINE_SHLOBJ_H
    33#define __WINE_SHLOBJ_H
     
    200200 * SHBrowseForFolder API
    201201 */
    202 typedef INT (CALLBACK* BFFCALLBACK)(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData);
     202typedef INT (* CALLBACK BFFCALLBACK)(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData);
    203203
    204204typedef struct tagBROWSEINFOA {
     
    332332*/
    333333
    334 typedef HRESULT(CALLBACK *SHELLVIEWPROC)(DWORD dwUserParam,LPSHELLFOLDER psf,
     334typedef HRESULT(* CALLBACK SHELLVIEWPROC)(DWORD dwUserParam,LPSHELLFOLDER psf,
    335335                         HWND hwnd,UINT uMsg,UINT wParam,LPARAM lParam);
    336336
     
    367367#define FMF_NO_PROGRAM_GROUPS   0x04
    368368
    369 typedef void (CALLBACK * LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile);
     369typedef void (* CALLBACK LPFNFMCALLBACK)(LPCITEMIDLIST pidlFolder, LPCITEMIDLIST pidlFile);
    370370
    371371/* FileMenu_AppendItem lpszText */
     
    378378 */
    379379typedef struct
    380 {       BOOL fShowAllObjects : 1;
    381         BOOL fShowExtensions : 1;
    382         BOOL fNoConfirmRecycle : 1;
    383         BOOL fShowSysFiles : 1;
    384 
    385         BOOL fShowCompColor : 1;
    386         BOOL fDoubleClickInWebView : 1;
    387         BOOL fDesktopHTML : 1;
    388         BOOL fWin95Classic : 1;
    389 
    390         BOOL fDontPrettyPath : 1;
    391         BOOL fShowAttribCol : 1;
    392         BOOL fMapNetDrvBtn : 1;
    393         BOOL fShowInfoTip : 1;
    394 
    395         BOOL fHideIcons : 1;
    396         UINT fRestFlags : 3;
     380{       unsigned int fShowAllObjects : 1;
     381        unsigned int fShowExtensions : 1;
     382        unsigned int fNoConfirmRecycle : 1;
     383        unsigned int fShowSysFiles : 1;
     384
     385        unsigned int fShowCompColor : 1;
     386        unsigned int fDoubleClickInWebView : 1;
     387        unsigned int fDesktopHTML : 1;
     388        unsigned int fWin95Classic : 1;
     389
     390        unsigned int fDontPrettyPath : 1;
     391        unsigned int fShowAttribCol : 1;
     392        unsigned int fMapNetDrvBtn : 1;
     393        unsigned int fShowInfoTip : 1;
     394
     395        unsigned int fHideIcons : 1;
     396        unsigned int fRestFlags : 3;
    397397} SHELLFLAGSTATE, * LPSHELLFLAGSTATE;
    398398
Note: See TracChangeset for help on using the changeset viewer.