<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    Hey all,<br>
    <br>
    I'm trying to create a win32com server that implements a standard
    interface (IExtractImage)<br>
    <br>
    I've added the iid to _com_interfaces_ and the method names to
    _public_methods_, but now I'm at a complete loss how to implement
    them.<br>
    <br>
    For instance, given the method, <br>
    <pre>HRESULT IExtractImage::GetLocation(
  [out]           LPWSTR pszPathBuffer,
  [<span style="color:Blue;">in</span>]            DWORD  cchMax,
  [out]           DWORD  *pdwPriority,
  [<span style="color:Blue;">in</span>]      <span style="color:Blue;">const</span> SIZE   *prgSize,
  [<span style="color:Blue;">in</span>]            DWORD  dwRecClrDepth,
  [<span style="color:Blue;">in</span>, out]       DWORD  *pdwFlags
);

How in the world is that supposed to look as a python method??

(Or is there some c++ or other glue I'd need to write to define that?)


Thanks,
-K
</pre>
  </body>
</html>