trackwnd.h
上传用户:xmgzy123
上传日期:2007-01-07
资源大小:373k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

WINDOWS

  1. /*
  2.  * trackwnd.h - Copyright (C) 1999,2000 Jay A. Key
  3.  *
  4.  * Header file for the TrackWnd window class and interface
  5.  *
  6.  **********************************************************************
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21.  *
  22.  */
  23. #ifndef _TRACKWND_H_INC
  24. #define _TRACKWND_H_INC
  25. #include <windows.h>
  26. #define ALLTRACKS            0xFFFFFFFF
  27. #define WM_ADDTRACK          (WM_USER+100)
  28. #define WM_DELTRACK          (WM_USER+101)
  29. #define WM_CHECKTRACK        (WM_USER+102)
  30. #define WM_SELTRACK          (WM_USER+103)
  31. #define WM_INVERTCHECK       (WM_USER+104)
  32. #define WM_RENSELTRACK       (WM_USER+105)
  33. #define WM_FINDFIRSTTRACK    (WM_USER+106)
  34. #define WM_FINDNEXTTRACK     (WM_USER+107)
  35. #define WM_SETSELTEXT        (WM_USER+108)
  36. #define WM_NUMCHECKED        (WM_USER+109)
  37. #define WM_NUMTRACKS         (WM_USER+110)
  38. #define WM_GETTRACK          (WM_USER+111)
  39. #define WM_SETTRACKSTATUS    (WM_USER+112)
  40. #define WM_SETTRACKTEXT      (WM_USER+113)
  41. typedef struct
  42. {
  43.   char name[MAX_PATH+1];
  44.   char status[61];
  45.   DWORD start;
  46.   DWORD len;
  47.   BOOL  bData;
  48.   BOOL  bChecked;          // display the check mark?
  49.   BOOL  bComplete;         // is it a full track, or just a segment?
  50. } ADDTRACK, *PADDTRACK, *LPADDTRACK;
  51. int InitTrackWnd( HINSTANCE hInst );
  52. HWND createTrackWnd( HWND hParent, HINSTANCE hInst, int idCtrl, LPRECT lprc );
  53. void addTrack( HWND hWnd, LPADDTRACK lpAddTrack );
  54. #endif