Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
856 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation 1998-2001.
  5. //
  6. // app.acf
  7. //
  8. // Methods to the application management service.
  9. //
  10. //--------------------------------------------------------------------------
  11. [
  12. strict_context_handle
  13. ]
  14. interface appmgmt
  15. {
  16. typedef [ allocate( dont_free ) ] PWSTR_NOFREE;
  17. [comm_status, fault_status] InstallBegin();
  18. [comm_status, fault_status] InstallManageApp();
  19. [comm_status, fault_status] InstallUnmanageApp();
  20. [comm_status, fault_status] InstallEnd();
  21. [comm_status, fault_status] ARPRemoveApp();
  22. [comm_status, fault_status] GetManagedApps();
  23. [comm_status, fault_status] RsopReportInstallFailure();
  24. [comm_status, fault_status] GetManagedAppCategories();
  25. }