2.3.5 AT_ENUM_CONTAINER

The ATSvc method NetrJobEnum uses the AT_ENUM_CONTAINER structure to return multiple AT_ENUM structures. The format of the AT_ENUM_CONTAINER structure is as follows:

 typedef struct _AT_ENUM_CONTAINER {
   DWORD EntriesRead;
   [size_is(EntriesRead)] LPAT_ENUM Buffer;
 } AT_ENUM_CONTAINER,
  *PAT_ENUM_CONTAINER,
  *LPAT_ENUM_CONTAINER;

EntriesRead: The number of entries in the Buffer array.

Buffer: Pointer to an array of AT_ENUM structures.