[MSI] fix some defines

CORE-14501
This commit is contained in:
Mark Jansen 2018-03-24 18:38:01 +01:00
parent 6b5e74cbab
commit 8aff426af0
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -104,11 +104,21 @@ static void MSI_CloseSummaryInfo( MSIOBJECTHDR *arg )
IStorage_Release( si->storage ); IStorage_Release( si->storage );
} }
#ifdef __REACTOS__
#define PID_DICTIONARY_MSI 0
#define PID_CODEPAGE_MSI 1
#define PID_SECURITY_MSI 19
#endif
static UINT get_type( UINT uiProperty ) static UINT get_type( UINT uiProperty )
{ {
switch( uiProperty ) switch( uiProperty )
{ {
#ifdef __REACTOS__
case PID_CODEPAGE_MSI:
#else
case PID_CODEPAGE: case PID_CODEPAGE:
#endif
return VT_I2; return VT_I2;
case PID_SUBJECT: case PID_SUBJECT:
@ -129,7 +139,11 @@ static UINT get_type( UINT uiProperty )
case PID_WORDCOUNT: case PID_WORDCOUNT:
case PID_CHARCOUNT: case PID_CHARCOUNT:
#ifdef __REACTOS__
case PID_SECURITY_MSI:
#else
case PID_SECURITY: case PID_SECURITY:
#endif
case PID_PAGECOUNT: case PID_PAGECOUNT:
return VT_I4; return VT_I4;
} }
@ -940,10 +954,18 @@ static UINT parse_prop( LPCWSTR prop, LPCWSTR value, UINT *pid, INT *int_value,
*pid = atoiW( prop ); *pid = atoiW( prop );
switch (*pid) switch (*pid)
{ {
#ifdef __REACTOS__
case PID_CODEPAGE_MSI:
#else
case PID_CODEPAGE: case PID_CODEPAGE:
#endif
case PID_WORDCOUNT: case PID_WORDCOUNT:
case PID_CHARCOUNT: case PID_CHARCOUNT:
#ifdef __REACTOS__
case PID_SECURITY_MSI:
#else
case PID_SECURITY: case PID_SECURITY:
#endif
case PID_PAGECOUNT: case PID_PAGECOUNT:
*int_value = atoiW( value ); *int_value = atoiW( value );
break; break;