IPWorks S/MIME 2020 C++ Edition

Questions / Feedback?

GroupList Event

Fired while group data transfers (during group listings).

Syntax

ANSI (Cross Platform)
virtual int FireGroupList(SNNTPGroupListEventParams *e);
typedef struct {
const char *Group;
int64 FirstArticle;
int64 LastArticle;
int CanPost; int reserved; } SNNTPGroupListEventParams; Unicode (Windows) virtual INT FireGroupList(SNNTPGroupListEventParams *e);
typedef struct {
LPCWSTR Group;
LONG64 FirstArticle;
LONG64 LastArticle;
BOOL CanPost; INT reserved; } SNNTPGroupListEventParams;
- (void)onGroupList:(NSString*)group :(long long)firstArticle :(long long)lastArticle :(BOOL)canPost;
#define EID_SNNTP_GROUPLIST 4

virtual INT IPWORKSSMIME_CALL FireGroupList(LPSTR &lpszGroup, LONG64 &lFirstArticle, LONG64 &lLastArticle, BOOL &bCanPost);

Remarks

The GroupList event is fired for every group reported by the NewsServer when the ListGroups or ListNewGroups method is called.

The Group parameter shows the name of the group.

The FirstArticle and LastArticle parameters contain the article numbers for the first and last articles in the group.

The CanPost is True or False depending on whether article posting is allowed in the group specified by Group.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks S/MIME 2020 C++ Edition - Version 20.0 [Build 8154]