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

  1. /*
  2.     APCCPL.H
  3.  
  4.     Include file for control panel applets on the AutoPC system.
  5.  
  6.     Copyright (c) 1997 Microsoft Corporation, All rights reserved.
  7. */
  8.  
  9. #ifndef APCCPL_H
  10. #define APCCPL_H
  11.  
  12. #include <cpl.h>
  13.  
  14. /*Under AutoPC V1.00, the following rules apply:
  15.  
  16.     If only the faceplate is supported, the hWnd Parameter used by the
  17.     CPlApplet function is not used.
  18.     
  19.     CPL_INIT
  20.         As WinCE documentation.
  21.  
  22.     CPL_GETCOUNT
  23.         As WinCE documentation.
  24.  
  25.     CPL_SELECT
  26.         Supported by the AutoPC. This is not supported by WinCE.
  27.  
  28.     CPL_NEWINQUIRE
  29.         As WinCE documentation, except:
  30.         
  31.         dwFlags - Set CPL_DISPLAY_FACEPLATE if this applet supports the
  32.                   AutoPC faceplate. All V1.00 applets should support this.
  33.                   Set CPL_DISPLAY_NOVGA is this aplet does NOT support the
  34.                   VGA screen.
  35.         szName  - This is the name displayed in the control panel icon view.
  36.  
  37.     CPL_APCINQUIRE
  38.         New to AutoPC, this asks for AutoPC specific data from the applet.
  39.         See the APCCPLINFO structure below.
  40.  
  41.     CPL_DBLCLK
  42.         As WinCE documentation.
  43.  
  44.     CPL_STOP
  45.         As WinCE documentation.
  46.  
  47.     CPL_EXIT        
  48.         As WinCE documentation.
  49.  
  50. */
  51.  
  52. #define CPL_DISPLAY_FACEPLATE   0x4000
  53. #define CPL_DISPLAY_NOVGA       0x8000
  54.  
  55. #define CPL_APCINQUIRE          0xFB01
  56.  
  57. typedef struct
  58. {
  59.     DWORD   dwSize;         //Size of this structure. Must be filled in by the applet.
  60.     WCHAR   szTTSName[32];  //Text-to-speech name of this applet.
  61.     WCHAR   szAlertName[32];    //Alert name name of this applet.
  62. } APCCPLINFO;
  63.  
  64. #endif //APCCPL_H