NWFSE_MEDIA_MGR_OBJ_LIST

Returns the media manager object list and the media manager object children’s list. Used by NWGetMediaMgrObjList.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    nextStartObjNum ; 
     nuint32                    objCount ; 
     nuint32                    objs [FSE_MAX_OBJECTS]; 
  } NWFSE_MEDIA_MGR_OBJ_LIST; 
  

Delphi Structure

  uses calwin32 
   
    NWFSE_MEDIA_MGR_OBJ_LIST = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      nextStartObjNum : nuint32;  
      objCount : nuint32;  
      objs : Array[0.. FSE_MAX_OBJECTS -1] Of nuint32; 
    End; 
  

Fields

serverTimeAndVConsoleInfo
Specifies the SERVER_AND_VCONSOLE_INFO structure containing the time since the server was brought up. This time is returned in ticks (approximately 1/8 of a second). When this parameter reaches 0xFFFFFFFF, it wraps to zero.
reserved
Is reserved for future use.
nextStartObjNum
Contains the number to be passed as the startNumber parameter on the next call. When this field is -1, all information has been processed.
objCount
Specifies the number of object IDs returned.
objs
Specifies the list of object IDs.