enthought / comtypes

A pure Python, lightweight COM client and server framework, based on the ctypes Python FFI package.
Other
292 stars 97 forks source link

windows data types #256

Open kdschlosser opened 2 years ago

kdschlosser commented 2 years ago

This is not an issue but I would like to share something I have put together. I have found it very useful as it contains a very large number of Windows data type and also some enumerations and structures as well. Some of them are included in ctypes.wintypes but I wanted them all housed in a single import.

I thought this might be helpful for some folks.

There are a total of 624 different data types, structures and enumerations.

data_types.zip

kdschlosser commented 2 years ago

question on this.

Would there be any interest in adding this to comtypes? I could create a dynamic module that would handle passing back what the user wants dynamically, this way if it's not being used it will not take up any resources seeing as how many data types there are.