mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[MSI] fix some defines
CORE-14501
This commit is contained in:
parent
6b5e74cbab
commit
8aff426af0
1 changed files with 22 additions and 0 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue