PEShowGroupEventInfo contains information when an event callback is called with event ID equal to PE_SHOW_GROUP_EVENT.
typedef struct PEShowGroupEventInfo {
WORD StructSize;
WORD groupLevel;
long windowHandle;
char **groupList;
}PEShowGroupEventInfo;
Make a copy of the groupList if you want to keep group path information. CRPE frees the groupList after the callback function.
type
PEPCharPointer = ^PChar;
PEShowGroupEventInfo = record
StructSize: Word;
groupLevel: Word;
windowHandle: Longint;
groupList: PEPCharPointer;
end;
| Seagate Software IMG Holdings, Inc. http://www.seagatesoftware.com Support services: http://support.seagatesoftware.com |