home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / samples / mm / tuner / tuner.h < prev    next >
Text File  |  1999-05-11  |  826b  |  39 lines

  1. #define UWC_CLIENTCLASS   "Tv Tuner Window Class"
  2.  
  3. #define WM_INITTELEVISION  WM_USER + 1
  4. #define WM_PAINTMOVIE      WM_USER + 2
  5.  
  6.  
  7.  
  8. #define IDC_DONE        101
  9. #define IDC_UP          102
  10. #define IDC_DOWN        103
  11. #define IDC_ENTRY       104
  12. #define IDC_SLIDER      105
  13. #define IDC_TEXT        106
  14.  
  15. #define ID_MAINWND      256
  16. #define ID_OPTIONS      257
  17. #define ID_EXIT         258
  18. #define ID_CHANNEL      259
  19. #define ID_MSGBOX       260
  20. #define ID_DIALOG       261
  21. #define ID_ICON         262
  22. #define ID_MOVIEWINDOW  263
  23.  
  24.  
  25. /*
  26.  * Window Instance Data
  27.  */
  28. typedef struct _APPDATA
  29. {
  30.     CHAR    szDevice[20];
  31.     ULONG   ulChannel;
  32.     ULONG   ulHighChannel;
  33.     ULONG   ulLowChannel;
  34.     ULONG   ulConnector;
  35.     ULONG   ulOverlayColor;
  36.     HWND    hwndMovie;
  37. } APPDATA, * PAPPDATA ;
  38.  
  39.