Changeset 103176 in vbox for trunk/src/libs/xpcom18a4/python/src/VariantUtils.cpp
- Timestamp:
- Feb 2, 2024 2:07:50 PM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 161435
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/python/src/VariantUtils.cpp
r94562 r103176 59 59 // ------------------------------------------------------------------------ 60 60 // one day we may know what they look like. 61 inline61 static inline 62 62 PRBool 63 63 IsNullDOMString( const nsAString& aString ) … … 66 66 } 67 67 68 inline68 static inline 69 69 PRBool 70 70 IsNullDOMString( const nsACString& aString ) … … 322 322 323 323 324 void FreeSingleArray(void *array_ptr, PRUint32 sequence_size, PRUint8 array_type)324 static void FreeSingleArray(void *array_ptr, PRUint32 sequence_size, PRUint8 array_type) 325 325 { 326 326 // Free each array element - NOT the array itself … … 372 372 373 373 374 PRBool FillSingleArray(void *array_ptr, PyObject *sequence_ob, PRUint32 sequence_size,375 PRUint32 array_element_size, PRUint8 array_type, nsIID *pIID)374 static PRBool FillSingleArray(void *array_ptr, PyObject *sequence_ob, PRUint32 sequence_size, 375 PRUint32 array_element_size, PRUint8 array_type, nsIID *pIID) 376 376 { 377 377 PRUint8 *pthis = (PRUint8 *)array_ptr; … … 925 925 } 926 926 927 PyObject *PyObject_FromVariantArray( Py_nsISupports *parent, nsIVariant *v)927 DECLHIDDEN(PyObject *) PyObject_FromVariantArray( Py_nsISupports *parent, nsIVariant *v) 928 928 { 929 929 nsresult nr;
Note:
See TracChangeset
for help on using the changeset viewer.