[Tutor] How do I use calldll and windll?

D-Man dsh8290@rit.edu
Thu, 29 Mar 2001 19:56:05 -0500


On Thu, Mar 29, 2001 at 07:22:14PM -0500, spi wrote:
| I figured out this issue, thought that I would post the solution in
| case anyone else had this problem
| 
| I was importing the modules in the wrong order
| 
| i was doing
| 
| >>> import windll
| >>> import calldll
| 
| The right way to do it is
| 
| >>> import calldll
| >>> import windll

Do you know why the order of import is significant?  I don't think it
should be,  I think the module's designer should have windll import
calldll if it needs it,  though of course there may be an issue I'm
not even thinking of now.

-D