TODO
| 905 | |
| 906 | |
| 907 | class PropertyArray(gdef.EVT_OBJECT_ARRAY_PROPERTY_HANDLE): |
| 908 | "TODO" |
| 909 | @property |
| 910 | def size(self): |
| 911 | array_size = gdef.DWORD() |
| 912 | windows.winproxy.EvtGetObjectArraySize(self, array_size) |
| 913 | return array_size.value |
| 914 | |
| 915 | def property(self, type, index): |
| 916 | return arrayproperty(self, type, index).value |
| 917 | |
| 918 | class EventMetadata(EvtHandle): |
| 919 | """The Metadata about a given Event type |
no outgoing calls
no test coverage detected