home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / AutoPC / apcsdk10.exe / data1.cab / Win32_Samples / win32 / tuneit / resource.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-13  |  1.3 KB  |  58 lines

  1. /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  2.  
  3. Copyright (c) 1998 Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     resource.h
  8.  
  9. Abstract:
  10.  
  11.     Tunit Sample application resource IDs.
  12.  
  13. Environment:
  14.  
  15.     AutoPC
  16.  
  17. -------------------------------------------------------------------*/
  18.  
  19. //Strings
  20. #define IDS_TUNEIT_MAIN                 12011
  21. #define IDS_TUNEIT_SETTINGS                12012
  22. #define IDS_BAND_FM                        12013
  23. #define IDS_BAND_AM                        12014
  24. #define IDS_MHZ                            12015
  25. #define IDS_KHZ                            12016
  26. #define IDS_NOPRESET                    12017
  27.  
  28. //Form ID
  29. #define IDF_MAIN                        100
  30.  
  31. //Control IDs
  32. #define IDC_BAND                        300
  33. #define IDC_FREQUENCY                    301
  34. #define IDC_VOLUME                        303
  35. #define IDC_STATUS                        304
  36. #define IDC_EDIT_PRESET                    305
  37. #define IDC_NAVGLYPH_RADIO                307
  38. #define IDC_VOLUMELABEL                    309
  39. #define IDC_HERTZ                        310
  40. #define IDC_SETTINGS                    311
  41.  
  42. //Menu-related IDs
  43. #define IDM_SETTINGS                    500
  44. #define ID_BASS                            501
  45. #define ID_TREBLE                        502
  46. #define ID_FADE                            503
  47. #define ID_BALANCE                        504
  48. #define ID_BAND                            505
  49.  
  50. // Flags used in local storage of Audio Capabilities and 
  51. // to control menu resource item loading
  52. #define FLAG_BALANCE    1
  53. #define FLAG_BASS        2
  54. #define FLAG_TREBLE        4
  55. #define FLAG_FADE        8
  56.  
  57. #define FLAG_ALL        FLAG_BALANCE|FLAG_BASS|FLAG_TREBLE|FLAG_FADE
  58.