10 lines
254 B
C
10 lines
254 B
C
|
typedef struct {
|
||
|
HANDLE Event;
|
||
|
DWORD SessionId;
|
||
|
} SESSIONNOTIFICATION, *PSESSIONNOTIFICATION;
|
||
|
|
||
|
typedef CList<PSESSIONNOTIFICATION, PSESSIONNOTIFICATION> CListSessionNotifications;
|
||
|
|
||
|
extern CListSessionNotifications *gplistSessionNotifications;
|
||
|
|