Python win32 dll

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Karl Lopes

    Python win32 dll

    Hello all,
    I would like to implement a COM server using python.
    This server is based on an interface which was given to me in Visual Basic.

    For example one of the methods in the interface is:
    Public Sub CreateLogFile(B yVal LogFilePath AS String,
    ByRef LogFileIntf As LogFile);


    1. The corresponding Python method would be:
    def CreateLogFile( self, LogFilePath, LogFileIntf ). Is this correct?
    2. Is there a difference in the way Python implements ByVal and ByRef?

    Thanks
    Karl
Working...