More docco

This commit is contained in:
Justin Hawkins 2024-06-27 23:37:30 +09:30
parent 8a8754b598
commit 6cbf1cc0d2

View File

@ -15,12 +15,12 @@ const EventTargetHardware = 1
const EventTargetSoftware = 2
type ESCommon struct {
Event string `json:"event"`
Context string `json:"context"`
Event string `json:"event"` // name of this event type
Context string `json:"context"` // A value to Identify the instance's action or Property Inspector. This value is received by the Property Inspector as a parameter of the connectElgatoStreamDeckSocket function.
}
type ESCommonNoContext struct {
Event string `json:"event"`
Event string `json:"event"` // name of this event type
}
type ESOpenMessage struct {