2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2002-2004 Mike McCormack for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(msidb
);
44 #define MSIFIELD_NULL 0
45 #define MSIFIELD_INT 1
46 #define MSIFIELD_WSTR 3
47 #define MSIFIELD_STREAM 4
49 static void MSI_FreeField( MSIFIELD
*field
)
57 msi_free( field
->u
.szwVal
);
60 IStream_Release( field
->u
.stream
);
63 ERR("Invalid field type %d\n", field
->type
);
67 static void MSI_CloseRecord( MSIOBJECTHDR
*arg
)
69 MSIRECORD
*rec
= (MSIRECORD
*) arg
;
72 for( i
=0; i
<=rec
->count
; i
++ )
73 MSI_FreeField( &rec
->fields
[i
] );
76 MSIRECORD
*MSI_CreateRecord( UINT cParams
)
81 TRACE("%d\n", cParams
);
86 len
= sizeof (MSIRECORD
) + sizeof (MSIFIELD
)*cParams
;
87 rec
= alloc_msiobject( MSIHANDLETYPE_RECORD
, len
, MSI_CloseRecord
);
93 MSIHANDLE WINAPI
MsiCreateRecord( UINT cParams
)
98 TRACE("%d\n", cParams
);
100 rec
= MSI_CreateRecord( cParams
);
103 ret
= alloc_msihandle( &rec
->hdr
);
104 msiobj_release( &rec
->hdr
);
109 UINT
MSI_RecordGetFieldCount( const MSIRECORD
*rec
)
114 UINT WINAPI
MsiRecordGetFieldCount( MSIHANDLE handle
)
119 TRACE("%ld\n", handle
);
121 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
125 msiobj_lock( &rec
->hdr
);
126 ret
= MSI_RecordGetFieldCount( rec
);
127 msiobj_unlock( &rec
->hdr
);
128 msiobj_release( &rec
->hdr
);
133 static BOOL
string2intW( LPCWSTR str
, int *out
)
138 if( *p
== '-' ) /* skip the minus sign */
142 if( (*p
< '0') || (*p
> '9') )
149 if( str
[0] == '-' ) /* check if it's negative */
156 UINT
MSI_RecordCopyField( MSIRECORD
*in_rec
, UINT in_n
,
157 MSIRECORD
*out_rec
, UINT out_n
)
159 UINT r
= ERROR_SUCCESS
;
161 msiobj_lock( &in_rec
->hdr
);
163 if ( in_n
> in_rec
->count
|| out_n
> out_rec
->count
)
164 r
= ERROR_FUNCTION_FAILED
;
165 else if ( in_rec
!= out_rec
|| in_n
!= out_n
)
170 in
= &in_rec
->fields
[in_n
];
171 out
= &out_rec
->fields
[out_n
];
178 out
->u
.iVal
= in
->u
.iVal
;
181 str
= strdupW( in
->u
.szwVal
);
183 r
= ERROR_OUTOFMEMORY
;
187 case MSIFIELD_STREAM
:
188 IStream_AddRef( in
->u
.stream
);
189 out
->u
.stream
= in
->u
.stream
;
192 ERR("invalid field type %d\n", in
->type
);
194 if (r
== ERROR_SUCCESS
)
195 out
->type
= in
->type
;
198 msiobj_unlock( &in_rec
->hdr
);
203 int MSI_RecordGetInteger( MSIRECORD
*rec
, UINT iField
)
207 TRACE("%p %d\n", rec
, iField
);
209 if( iField
> rec
->count
)
210 return MSI_NULL_INTEGER
;
212 switch( rec
->fields
[iField
].type
)
215 return rec
->fields
[iField
].u
.iVal
;
217 if( string2intW( rec
->fields
[iField
].u
.szwVal
, &ret
) )
219 return MSI_NULL_INTEGER
;
224 return MSI_NULL_INTEGER
;
227 int WINAPI
MsiRecordGetInteger( MSIHANDLE handle
, UINT iField
)
232 TRACE("%ld %d\n", handle
, iField
);
234 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
236 return MSI_NULL_INTEGER
;
238 msiobj_lock( &rec
->hdr
);
239 ret
= MSI_RecordGetInteger( rec
, iField
);
240 msiobj_unlock( &rec
->hdr
);
241 msiobj_release( &rec
->hdr
);
246 UINT WINAPI
MsiRecordClearData( MSIHANDLE handle
)
251 TRACE("%ld\n", handle
);
253 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
255 return ERROR_INVALID_HANDLE
;
257 msiobj_lock( &rec
->hdr
);
258 for( i
=0; i
<=rec
->count
; i
++)
260 MSI_FreeField( &rec
->fields
[i
] );
261 rec
->fields
[i
].type
= MSIFIELD_NULL
;
262 rec
->fields
[i
].u
.iVal
= 0;
264 msiobj_unlock( &rec
->hdr
);
265 msiobj_release( &rec
->hdr
);
267 return ERROR_SUCCESS
;
270 UINT
MSI_RecordSetInteger( MSIRECORD
*rec
, UINT iField
, int iVal
)
272 TRACE("%p %u %d\n", rec
, iField
, iVal
);
274 if( iField
> rec
->count
)
275 return ERROR_INVALID_PARAMETER
;
277 MSI_FreeField( &rec
->fields
[iField
] );
278 rec
->fields
[iField
].type
= MSIFIELD_INT
;
279 rec
->fields
[iField
].u
.iVal
= iVal
;
281 return ERROR_SUCCESS
;
284 UINT WINAPI
MsiRecordSetInteger( MSIHANDLE handle
, UINT iField
, int iVal
)
289 TRACE("%ld %u %d\n", handle
, iField
, iVal
);
291 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
293 return ERROR_INVALID_HANDLE
;
295 msiobj_lock( &rec
->hdr
);
296 ret
= MSI_RecordSetInteger( rec
, iField
, iVal
);
297 msiobj_unlock( &rec
->hdr
);
298 msiobj_release( &rec
->hdr
);
302 BOOL
MSI_RecordIsNull( MSIRECORD
*rec
, UINT iField
)
306 TRACE("%p %d\n", rec
, iField
);
308 r
= ( iField
> rec
->count
) ||
309 ( rec
->fields
[iField
].type
== MSIFIELD_NULL
);
314 BOOL WINAPI
MsiRecordIsNull( MSIHANDLE handle
, UINT iField
)
319 TRACE("%ld %d\n", handle
, iField
);
321 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
324 msiobj_lock( &rec
->hdr
);
325 ret
= MSI_RecordIsNull( rec
, iField
);
326 msiobj_unlock( &rec
->hdr
);
327 msiobj_release( &rec
->hdr
);
332 UINT
MSI_RecordGetStringA(MSIRECORD
*rec
, UINT iField
,
333 LPSTR szValue
, LPDWORD pcchValue
)
338 TRACE("%p %d %p %p\n", rec
, iField
, szValue
, pcchValue
);
340 if( iField
> rec
->count
)
342 if ( szValue
&& *pcchValue
> 0 )
346 return ERROR_SUCCESS
;
350 switch( rec
->fields
[iField
].type
)
353 wsprintfA(buffer
, "%d", rec
->fields
[iField
].u
.iVal
);
354 len
= lstrlenA( buffer
);
356 lstrcpynA(szValue
, buffer
, *pcchValue
);
359 len
= WideCharToMultiByte( CP_ACP
, 0, rec
->fields
[iField
].u
.szwVal
, -1,
360 NULL
, 0 , NULL
, NULL
);
362 WideCharToMultiByte( CP_ACP
, 0, rec
->fields
[iField
].u
.szwVal
, -1,
363 szValue
, *pcchValue
, NULL
, NULL
);
364 if( szValue
&& *pcchValue
&& len
>*pcchValue
)
365 szValue
[*pcchValue
-1] = 0;
370 if( szValue
&& *pcchValue
> 0 )
374 ret
= ERROR_INVALID_PARAMETER
;
378 if( szValue
&& *pcchValue
<= len
)
379 ret
= ERROR_MORE_DATA
;
385 UINT WINAPI
MsiRecordGetStringA(MSIHANDLE handle
, UINT iField
,
386 LPSTR szValue
, LPDWORD pcchValue
)
391 TRACE("%ld %d %p %p\n", handle
, iField
, szValue
, pcchValue
);
393 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
395 return ERROR_INVALID_HANDLE
;
396 msiobj_lock( &rec
->hdr
);
397 ret
= MSI_RecordGetStringA( rec
, iField
, szValue
, pcchValue
);
398 msiobj_unlock( &rec
->hdr
);
399 msiobj_release( &rec
->hdr
);
403 const WCHAR
*MSI_RecordGetString( const MSIRECORD
*rec
, UINT iField
)
405 if( iField
> rec
->count
)
408 if( rec
->fields
[iField
].type
!= MSIFIELD_WSTR
)
411 return rec
->fields
[iField
].u
.szwVal
;
414 UINT
MSI_RecordGetStringW(MSIRECORD
*rec
, UINT iField
,
415 LPWSTR szValue
, LPDWORD pcchValue
)
419 static const WCHAR szFormat
[] = { '%','d',0 };
421 TRACE("%p %d %p %p\n", rec
, iField
, szValue
, pcchValue
);
423 if( iField
> rec
->count
)
425 if ( szValue
&& *pcchValue
> 0 )
429 return ERROR_SUCCESS
;
433 switch( rec
->fields
[iField
].type
)
436 wsprintfW(buffer
, szFormat
, rec
->fields
[iField
].u
.iVal
);
437 len
= lstrlenW( buffer
);
439 lstrcpynW(szValue
, buffer
, *pcchValue
);
442 len
= lstrlenW( rec
->fields
[iField
].u
.szwVal
);
444 lstrcpynW(szValue
, rec
->fields
[iField
].u
.szwVal
, *pcchValue
);
448 if( szValue
&& *pcchValue
> 0 )
454 if( szValue
&& *pcchValue
<= len
)
455 ret
= ERROR_MORE_DATA
;
461 UINT WINAPI
MsiRecordGetStringW(MSIHANDLE handle
, UINT iField
,
462 LPWSTR szValue
, LPDWORD pcchValue
)
467 TRACE("%ld %d %p %p\n", handle
, iField
, szValue
, pcchValue
);
469 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
471 return ERROR_INVALID_HANDLE
;
473 msiobj_lock( &rec
->hdr
);
474 ret
= MSI_RecordGetStringW( rec
, iField
, szValue
, pcchValue
);
475 msiobj_unlock( &rec
->hdr
);
476 msiobj_release( &rec
->hdr
);
480 static UINT
msi_get_stream_size( IStream
*stm
)
485 r
= IStream_Stat( stm
, &stat
, STATFLAG_NONAME
);
488 return stat
.cbSize
.QuadPart
;
491 UINT
MSI_RecordDataSize(MSIRECORD
*rec
, UINT iField
)
493 TRACE("%p %d\n", rec
, iField
);
495 if( iField
> rec
->count
)
498 switch( rec
->fields
[iField
].type
)
503 return lstrlenW( rec
->fields
[iField
].u
.szwVal
);
506 case MSIFIELD_STREAM
:
507 return msi_get_stream_size( rec
->fields
[iField
].u
.stream
);
512 UINT WINAPI
MsiRecordDataSize(MSIHANDLE handle
, UINT iField
)
517 TRACE("%ld %d\n", handle
, iField
);
519 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
522 msiobj_lock( &rec
->hdr
);
523 ret
= MSI_RecordDataSize( rec
, iField
);
524 msiobj_unlock( &rec
->hdr
);
525 msiobj_release( &rec
->hdr
);
529 UINT
MSI_RecordSetStringA( MSIRECORD
*rec
, UINT iField
, LPCSTR szValue
)
533 TRACE("%p %d %s\n", rec
, iField
, debugstr_a(szValue
));
535 if( iField
> rec
->count
)
536 return ERROR_INVALID_FIELD
;
538 MSI_FreeField( &rec
->fields
[iField
] );
539 if( szValue
&& szValue
[0] )
541 str
= strdupAtoW( szValue
);
542 rec
->fields
[iField
].type
= MSIFIELD_WSTR
;
543 rec
->fields
[iField
].u
.szwVal
= str
;
547 rec
->fields
[iField
].type
= MSIFIELD_NULL
;
548 rec
->fields
[iField
].u
.szwVal
= NULL
;
554 UINT WINAPI
MsiRecordSetStringA( MSIHANDLE handle
, UINT iField
, LPCSTR szValue
)
559 TRACE("%ld %d %s\n", handle
, iField
, debugstr_a(szValue
));
561 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
563 return ERROR_INVALID_HANDLE
;
564 msiobj_lock( &rec
->hdr
);
565 ret
= MSI_RecordSetStringA( rec
, iField
, szValue
);
566 msiobj_unlock( &rec
->hdr
);
567 msiobj_release( &rec
->hdr
);
571 UINT
MSI_RecordSetStringW( MSIRECORD
*rec
, UINT iField
, LPCWSTR szValue
)
575 TRACE("%p %d %s\n", rec
, iField
, debugstr_w(szValue
));
577 if( iField
> rec
->count
)
578 return ERROR_INVALID_FIELD
;
580 MSI_FreeField( &rec
->fields
[iField
] );
582 if( szValue
&& szValue
[0] )
584 str
= strdupW( szValue
);
585 rec
->fields
[iField
].type
= MSIFIELD_WSTR
;
586 rec
->fields
[iField
].u
.szwVal
= str
;
590 rec
->fields
[iField
].type
= MSIFIELD_NULL
;
591 rec
->fields
[iField
].u
.szwVal
= NULL
;
597 UINT WINAPI
MsiRecordSetStringW( MSIHANDLE handle
, UINT iField
, LPCWSTR szValue
)
602 TRACE("%ld %d %s\n", handle
, iField
, debugstr_w(szValue
));
604 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
606 return ERROR_INVALID_HANDLE
;
608 msiobj_lock( &rec
->hdr
);
609 ret
= MSI_RecordSetStringW( rec
, iField
, szValue
);
610 msiobj_unlock( &rec
->hdr
);
611 msiobj_release( &rec
->hdr
);
615 /* read the data in a file into an IStream */
616 static UINT
RECORD_StreamFromFile(LPCWSTR szFile
, IStream
**pstm
)
618 DWORD sz
, szHighWord
= 0, read
;
622 ULARGE_INTEGER ulSize
;
624 TRACE("reading %s\n", debugstr_w(szFile
));
626 /* read the file into memory */
627 handle
= CreateFileW(szFile
, GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
628 if( handle
== INVALID_HANDLE_VALUE
)
629 return GetLastError();
630 sz
= GetFileSize(handle
, &szHighWord
);
631 if( sz
!= INVALID_FILE_SIZE
&& szHighWord
== 0 )
633 hGlob
= GlobalAlloc(GMEM_FIXED
, sz
);
636 BOOL r
= ReadFile(handle
, hGlob
, sz
, &read
, NULL
);
646 return ERROR_FUNCTION_FAILED
;
648 /* make a stream out of it, and set the correct file size */
649 hr
= CreateStreamOnHGlobal(hGlob
, TRUE
, pstm
);
653 return ERROR_FUNCTION_FAILED
;
656 /* set the correct size - CreateStreamOnHGlobal screws it up */
657 ulSize
.QuadPart
= sz
;
658 IStream_SetSize(*pstm
, ulSize
);
660 TRACE("read %s, %d bytes into IStream %p\n", debugstr_w(szFile
), sz
, *pstm
);
662 return ERROR_SUCCESS
;
665 UINT
MSI_RecordSetStream(MSIRECORD
*rec
, UINT iField
, IStream
*stream
)
667 if ( (iField
== 0) || (iField
> rec
->count
) )
668 return ERROR_INVALID_PARAMETER
;
670 MSI_FreeField( &rec
->fields
[iField
] );
671 rec
->fields
[iField
].type
= MSIFIELD_STREAM
;
672 rec
->fields
[iField
].u
.stream
= stream
;
674 return ERROR_SUCCESS
;
677 static UINT
MSI_RecordSetStreamFromFileW(MSIRECORD
*rec
, UINT iField
, LPCWSTR szFilename
)
682 if( (iField
== 0) || (iField
> rec
->count
) )
683 return ERROR_INVALID_PARAMETER
;
685 /* no filename means we should seek back to the start of the stream */
691 if( rec
->fields
[iField
].type
!= MSIFIELD_STREAM
)
692 return ERROR_INVALID_FIELD
;
694 stm
= rec
->fields
[iField
].u
.stream
;
696 return ERROR_INVALID_FIELD
;
699 r
= IStream_Seek( stm
, ofs
, STREAM_SEEK_SET
, &cur
);
701 return ERROR_FUNCTION_FAILED
;
705 /* read the file into a stream and save the stream in the record */
706 r
= RECORD_StreamFromFile(szFilename
, &stm
);
707 if( r
!= ERROR_SUCCESS
)
710 /* if all's good, store it in the record */
711 MSI_RecordSetStream(rec
, iField
, stm
);
714 return ERROR_SUCCESS
;
717 UINT WINAPI
MsiRecordSetStreamA(MSIHANDLE hRecord
, UINT iField
, LPCSTR szFilename
)
722 TRACE("%ld %d %s\n", hRecord
, iField
, debugstr_a(szFilename
));
726 wstr
= strdupAtoW( szFilename
);
728 return ERROR_OUTOFMEMORY
;
730 ret
= MsiRecordSetStreamW(hRecord
, iField
, wstr
);
736 UINT WINAPI
MsiRecordSetStreamW(MSIHANDLE handle
, UINT iField
, LPCWSTR szFilename
)
741 TRACE("%ld %d %s\n", handle
, iField
, debugstr_w(szFilename
));
743 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
745 return ERROR_INVALID_HANDLE
;
747 msiobj_lock( &rec
->hdr
);
748 ret
= MSI_RecordSetStreamFromFileW( rec
, iField
, szFilename
);
749 msiobj_unlock( &rec
->hdr
);
750 msiobj_release( &rec
->hdr
);
754 UINT
MSI_RecordReadStream(MSIRECORD
*rec
, UINT iField
, char *buf
, LPDWORD sz
)
760 TRACE("%p %d %p %p\n", rec
, iField
, buf
, sz
);
763 return ERROR_INVALID_PARAMETER
;
765 if( iField
> rec
->count
)
766 return ERROR_INVALID_PARAMETER
;
768 if( rec
->fields
[iField
].type
!= MSIFIELD_STREAM
)
769 return ERROR_INVALID_DATATYPE
;
771 stm
= rec
->fields
[iField
].u
.stream
;
773 return ERROR_INVALID_PARAMETER
;
775 /* if there's no buffer pointer, calculate the length to the end */
779 ULARGE_INTEGER end
, cur
;
781 ofs
.QuadPart
= cur
.QuadPart
= 0;
783 r
= IStream_Seek( stm
, ofs
, STREAM_SEEK_SET
, &cur
);
784 IStream_Seek( stm
, ofs
, STREAM_SEEK_END
, &end
);
785 ofs
.QuadPart
= cur
.QuadPart
;
786 IStream_Seek( stm
, ofs
, STREAM_SEEK_SET
, &cur
);
787 *sz
= end
.QuadPart
- cur
.QuadPart
;
789 return ERROR_SUCCESS
;
794 r
= IStream_Read( stm
, buf
, *sz
, &count
);
798 return ERROR_FUNCTION_FAILED
;
803 return ERROR_SUCCESS
;
806 UINT WINAPI
MsiRecordReadStream(MSIHANDLE handle
, UINT iField
, char *buf
, LPDWORD sz
)
811 TRACE("%ld %d %p %p\n", handle
, iField
, buf
, sz
);
813 rec
= msihandle2msiinfo( handle
, MSIHANDLETYPE_RECORD
);
815 return ERROR_INVALID_HANDLE
;
816 msiobj_lock( &rec
->hdr
);
817 ret
= MSI_RecordReadStream( rec
, iField
, buf
, sz
);
818 msiobj_unlock( &rec
->hdr
);
819 msiobj_release( &rec
->hdr
);
823 UINT
MSI_RecordSetIStream( MSIRECORD
*rec
, UINT iField
, IStream
*stm
)
825 TRACE("%p %d %p\n", rec
, iField
, stm
);
827 if( iField
> rec
->count
)
828 return ERROR_INVALID_FIELD
;
830 MSI_FreeField( &rec
->fields
[iField
] );
832 rec
->fields
[iField
].type
= MSIFIELD_STREAM
;
833 rec
->fields
[iField
].u
.stream
= stm
;
834 IStream_AddRef( stm
);
836 return ERROR_SUCCESS
;
839 UINT
MSI_RecordGetIStream( MSIRECORD
*rec
, UINT iField
, IStream
**pstm
)
841 TRACE("%p %d %p\n", rec
, iField
, pstm
);
843 if( iField
> rec
->count
)
844 return ERROR_INVALID_FIELD
;
846 if( rec
->fields
[iField
].type
!= MSIFIELD_STREAM
)
847 return ERROR_INVALID_FIELD
;
849 *pstm
= rec
->fields
[iField
].u
.stream
;
850 IStream_AddRef( *pstm
);
852 return ERROR_SUCCESS
;
855 static UINT
msi_dump_stream_to_file( IStream
*stm
, LPCWSTR name
)
863 stgm
= STGM_READWRITE
| STGM_SHARE_EXCLUSIVE
| STGM_FAILIFTHERE
;
864 r
= SHCreateStreamOnFileW( name
, stgm
, &out
);
866 return ERROR_FUNCTION_FAILED
;
869 r
= IStream_Seek( stm
, pos
, STREAM_SEEK_END
, &size
);
874 r
= IStream_Seek( stm
, pos
, STREAM_SEEK_SET
, NULL
);
878 r
= IStream_CopyTo( stm
, out
, size
, NULL
, NULL
);
881 IStream_Release( out
);
883 return ERROR_FUNCTION_FAILED
;
884 return ERROR_SUCCESS
;
887 UINT
MSI_RecordStreamToFile( MSIRECORD
*rec
, UINT iField
, LPCWSTR name
)
892 TRACE("%p %u %s\n", rec
, iField
, debugstr_w(name
));
894 msiobj_lock( &rec
->hdr
);
896 r
= MSI_RecordGetIStream( rec
, iField
, &stm
);
897 if( r
== ERROR_SUCCESS
)
899 r
= msi_dump_stream_to_file( stm
, name
);
900 IStream_Release( stm
);
903 msiobj_unlock( &rec
->hdr
);
908 MSIRECORD
*MSI_CloneRecord(MSIRECORD
*rec
)
913 count
= MSI_RecordGetFieldCount(rec
);
914 clone
= MSI_CreateRecord(count
);
918 for (i
= 0; i
<= count
; i
++)
920 if (rec
->fields
[i
].type
== MSIFIELD_STREAM
)
922 if (FAILED(IStream_Clone(rec
->fields
[i
].u
.stream
,
923 &clone
->fields
[i
].u
.stream
)))
925 msiobj_release(&clone
->hdr
);
931 r
= MSI_RecordCopyField(rec
, i
, clone
, i
);
932 if (r
!= ERROR_SUCCESS
)
934 msiobj_release(&clone
->hdr
);
943 BOOL
MSI_RecordsAreEqual(MSIRECORD
*a
, MSIRECORD
*b
)
947 if (a
->count
!= b
->count
)
950 for (i
= 0; i
<= a
->count
; i
++)
952 if (a
->fields
[i
].type
!= b
->fields
[i
].type
)
955 switch (a
->fields
[i
].type
)
961 if (a
->fields
[i
].u
.iVal
!= b
->fields
[i
].u
.iVal
)
966 if (lstrcmpW(a
->fields
[i
].u
.szwVal
, b
->fields
[i
].u
.szwVal
))
970 case MSIFIELD_STREAM
: