I'm working on something to do external alarm notifications. When I dispatch an alarm, it has to have some kind of unique ID about the occurrence of the alarm. So for instance if I had an alarm tag named BADALARM and this occurs three times, I want an ID for each individual occurrence. The reason I want this is that I want to be able to acknowledge the alarm event later.
When you call AlarmFirstTagRec
you get back an ID:
Return Value
The alarm record identifier or -1 if no match is found.
Is that ID kind of like an auto-number of the occurrence of the alarm - an ID that keeps increasing forever, one for each alarm activation ?
-C