TOOLS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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.    Copyright 1997 Microsoft Corporation.  All Rights Reserved.
  7. **************************************************************************/
  8. /**************************************************************************
  9.    File:          Tools.h
  10.    
  11.    Description:   
  12. **************************************************************************/
  13. /**************************************************************************
  14.    #include statements
  15. **************************************************************************/
  16. #include "resource.h"
  17. /**************************************************************************
  18.    structure definitions
  19. **************************************************************************/
  20. typedef struct
  21.    {
  22.    int   idCommand;
  23.    int   iImage;
  24.    int   idButtonString;
  25.    int   idMenuString;
  26.    int   nStringOffset;
  27.    BYTE  bState;
  28.    BYTE  bStyle;
  29.    }MYTOOLINFO, *LPMYTOOLINFO;
  30. extern MYTOOLINFO g_Tools[];