Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenappmgmt.h
Go to the documentation of this file.
00001 /* 00002 * Copyright (C) 2005 Mike McCormack 00003 * 00004 * This library is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU Lesser General Public 00006 * License as published by the Free Software Foundation; either 00007 * version 2.1 of the License, or (at your option) any later version. 00008 * 00009 * This library is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00012 * Lesser General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public 00015 * License along with this library; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00017 */ 00018 00019 #ifndef _APPMGMT_H 00020 #define _APPMGMT_H 00021 00022 #ifdef __cplusplus 00023 extern "C" { 00024 #endif /* defined(__cplusplus) */ 00025 00026 typedef struct _MANAGEDAPPLICATION 00027 { 00028 LPWSTR pszPackageName; 00029 LPWSTR pszPublisher; 00030 DWORD dwVersionHi; 00031 DWORD dwVersionLo; 00032 DWORD dwRevision; 00033 GUID GpoId; 00034 LPWSTR pszPolicyName; 00035 GUID ProductId; 00036 LANGID Language; 00037 LPWSTR pszOwner; 00038 LPWSTR pszCompany; 00039 LPWSTR pszComments; 00040 LPWSTR pszContact; 00041 LPWSTR pszSupportUrl; 00042 DWORD dwPathType; 00043 BOOL bInstalled; 00044 } MANAGEDAPPLICATION, *PMANAGEDAPPLICATION; 00045 00046 DWORD WINAPI CommandLineFromMsiDescriptor(WCHAR*,WCHAR*,DWORD*); 00047 DWORD WINAPI GetManagedApplications(GUID*,DWORD,DWORD,LPDWORD,PMANAGEDAPPLICATION*); 00048 00049 #ifdef __cplusplus 00050 } /* extern "C" */ 00051 #endif /* defined(__cplusplus) */ 00052 00053 #endif /* _APPMGMT_H */ Generated on Sun May 27 2012 04:31:07 for ReactOS by
1.7.6.1
|