/*1* Copyright (C) 2005 Mike McCormack2*3* This library is free software; you can redistribute it and/or4* modify it under the terms of the GNU Lesser General Public5* License as published by the Free Software Foundation; either6* version 2.1 of the License, or (at your option) any later version.7*8* This library is distributed in the hope that it will be useful,9* but WITHOUT ANY WARRANTY; without even the implied warranty of10* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU11* Lesser General Public License for more details.12*13* You should have received a copy of the GNU Lesser General Public14* License along with this library; if not, write to the Free Software15* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA16*/1718#ifndef _APPMGMT_H19#define _APPMGMT_H2021typedef struct _MANAGEDAPPLICATION22{23LPWSTR pszPackageName;24LPWSTR pszPublisher;25DWORD dwVersionHi;26DWORD dwVersionLo;27DWORD dwRevision;28GUID GpoId;29LPWSTR pszPolicyName;30GUID ProductId;31LANGID Language;32LPWSTR pszOwner;33LPWSTR pszCompany;34LPWSTR pszComments;35LPWSTR pszContact;36LPWSTR pszSupportUrl;37DWORD dwPathType;38BOOL bInstalled;39} MANAGEDAPPLICATION, *PMANAGEDAPPLICATION;404142#ifdef __cplusplus43extern "C" {44#endif4546DWORD WINAPI CommandLineFromMsiDescriptor(WCHAR*,WCHAR*,DWORD*);47DWORD WINAPI GetManagedApplications(GUID*,DWORD,DWORD,LPDWORD,PMANAGEDAPPLICATION*);4849#ifdef __cplusplus50}51#endif5253#endif /* _APPMGMT_H */545556