Specifies a COM method slot without idlflags
(restype, name, argtypes=())
| 166 | |
| 167 | |
| 168 | def STDMETHOD(restype, name, argtypes=()) -> _ComMemberSpec: |
| 169 | "Specifies a COM method slot without idlflags" |
| 170 | return _ComMemberSpec(restype, name, argtypes, None, (), None) |
| 171 | |
| 172 | |
| 173 | def DISPMETHOD(idlflags, restype, name, *argspec) -> _DispMemberSpec: |
searching dependent graphs…