TypeFromParts builds the event type from provider GUID and hook ID.
(g windows.GUID, id uint16)
| 618 | |
| 619 | // TypeFromParts builds the event type from provider GUID and hook ID. |
| 620 | func TypeFromParts(g windows.GUID, id uint16) Type { return pack(g, id) } |
| 621 | |
| 622 | // pack merges event provider GUID and the hook ID into `Type` array. |
| 623 | // The type provides a convenient way for comparing event types. |
no test coverage detected