home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / shell / regview / tools.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-27  |  1.3 KB  |  40 lines

  1. /**************************************************************************
  2.    THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  3.    ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  4.    THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  5.    PARTICULAR PURPOSE.
  6.  
  7.    Copyright 1997 Microsoft Corporation.  All Rights Reserved.
  8. **************************************************************************/
  9.  
  10. /**************************************************************************
  11.  
  12.    File:          Tools.h
  13.    
  14.    Description:   
  15.  
  16. **************************************************************************/
  17.  
  18. /**************************************************************************
  19.    #include statements
  20. **************************************************************************/
  21.  
  22. #include "resource.h"
  23.  
  24. /**************************************************************************
  25.    structure definitions
  26. **************************************************************************/
  27.  
  28. typedef struct
  29.    {
  30.    int   idCommand;
  31.    int   iImage;
  32.    int   idButtonString;
  33.    int   idMenuString;
  34.    int   nStringOffset;
  35.    BYTE  bState;
  36.    BYTE  bStyle;
  37.    }MYTOOLINFO, *LPMYTOOLINFO;
  38.  
  39. extern MYTOOLINFO g_Tools[];
  40.