Changeset 108338 in vbox
- Timestamp:
- Feb 23, 2025 9:22:49 PM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167692
- Location:
- trunk/src/libs/xpcom18a4/xpcom/typelib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_typelib.c
r108336 r108338 262 262 if (!find_interfaces(pThis, pInput, &pIt->u.Method.LstParams)) 263 263 return false; 264 break; 264 265 case kXpidlNdType_Parameter: 265 266 add_interface_maybe(pThis, pIt->u.Param.pNdTypeSpec); -
trunk/src/libs/xpcom18a4/xpcom/typelib/xpidl/xpidl_util.c
r108332 r108338 125 125 126 126 count = sscanf(str, nsIDFmt2, 127 &n0, &n1,&n2,128 &n3[0],&n3[1],&n3[2],&n3[3],129 &n3[4],&n3[5],&n3[6],&n3[7]);127 (uint32_t *)&n0, (uint32_t *)&n1, (uint32_t *)&n2, 128 (uint32_t *)&n3[0],(uint32_t *)&n3[1],(uint32_t *)&n3[2],(uint32_t *)&n3[3], 129 (uint32_t *)&n3[4],(uint32_t *)&n3[5],(uint32_t *)&n3[6],(uint32_t *)&n3[7]); 130 130 131 131 id->m0 = (PRInt32) n0; -
trunk/src/libs/xpcom18a4/xpcom/typelib/xpt/public/xpt_xdr.h
r16399 r108338 217 217 if (!(mode == XPT_ENCODE || XPT_Do32(cursor, &new_curs.offset)) || \ 218 218 !CheckForRepeat(cursor, (void **)addrp, pool, \ 219 mode == XPT_ENCODE ? size : 0 u, &new_curs, \219 mode == XPT_ENCODE ? size : 0, &new_curs, \ 220 220 &already) || \ 221 221 !(mode == XPT_DECODE || XPT_Do32(cursor, &new_curs.offset))) \ -
trunk/src/libs/xpcom18a4/xpcom/typelib/xpt/tools/xpt_link.c
r108336 r108338 500 500 /* Fix parent_interface first. 501 501 */ 502 if (id->parent_interface && id->parent_interface != 0) {502 if (id->parent_interface) { 503 503 id->parent_interface = 504 504 get_new_index(fix_array, totalNumberOfInterfaces,
Note:
See TracChangeset
for help on using the changeset viewer.