Update of /cvsroot/pywin32/pywin32/com/win32comext/adsi/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5719/com/win32comext/adsi/src
Modified Files:
PyIADsContainer.i
Log Message:
Add IADsContainer.GetObject
Index: PyIADsContainer.i
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32comext/adsi/src/PyIADsContainer.i,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** PyIADsContainer.i 5 May 2000 00:42:00 -0000 1.1
--- PyIADsContainer.i 10 Jul 2006 13:08:57 -0000 1.2
***************
*** 28,31 ****
--- 28,36 ----
%}
+ // @pyswig <o PyIDispatch>|GetObject|
+ // @pyparm string|class||Specifies the name of the object class as known in the underlying directory and identical to the one retrieved through the get_Class property method. If the class name is None, the provider returns the first item found in the container.
+ // @pyparm string|relativeName||Specifies the name of the object as known in the underlying directory and identical to the one retrieved through the get_Name property method.
+ HRESULT GetObject(WCHAR *INPUT_NULLOK, WCHAR *INPUT_NULLOK, IDispatch **OUTPUT);
+
// @pyswig int|get_Count|
HRESULT get_Count(long *OUTPUT);
|