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

  1. //
  2. // APC_UNST.H
  3. //
  4. // This public header file specifies function prototypes that APCLOAD.EXE will call
  5. // in the ISV application's "UNINSTALL.DLL", as well as the supported return values.
  6.  
  7.  
  8. //
  9. // Uninstall_Init
  10. //
  11. // @comm    Called before the application is uninstalled
  12. //
  13. typedef enum
  14. {
  15.     codeUNINSTALL_INIT_CONTINUE = 0,    // @comm Continue with the uninstallation
  16.     codeUNINSTALL_INIT_CANCEL           // @comm Immediately cancel the uninstallation
  17. }
  18. codeUNINSTALL_INIT;
  19.  
  20. codeUNINSTALL_INIT Uninstall_Init();
  21.  
  22. typedef codeUNINSTALL_INIT (*pfnUNINSTALL_INIT)( );
  23. const WCHAR wszUNINSTALL_INIT[]  = L"Uninstall_Init";
  24.  
  25. //
  26. // Uninstall_Exit
  27. //
  28. // @comm    Called after the application is uninstalled
  29. //
  30. typedef enum
  31. {
  32.     codeUNINSTALL_EXIT_DONE     = 0     // @comm Exit the uninstallation successfully
  33. }
  34. codeUNINSTALL_EXIT;
  35.  
  36. codeUNINSTALL_EXIT Uninstall_Exit( );
  37.  
  38. typedef codeUNINSTALL_EXIT (*pfnUNINSTALL_EXIT)( );
  39. const WCHAR wszUNINSTALL_EXIT[]  = L"Uninstall_Exit";
  40.