NWFSE_LOADED_MEDIA_NUM_LIST

Returns a list of loaded media numbers. Used by NWGetLoadedMediaNumList.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    maxMediaTypes ; 
     nuint32                    mediaListCount ; 
     nuint32                    mediaList [FSE_MEDIA_LIST_MAX]; 
  } NWFSE_LOADED_MEDIA_NUM_LIST;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_LOADED_MEDIA_NUM_LIST = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      maxMediaTypes : nuint32;  
      mediaListCount : nuint32;  
      mediaList : Array[0.. FSE_MEDIA_LIST_MAX -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 (pass 0).
maxMediaTypes
Specifies the maximum number of media allowed.
mediaListCount
Specifies the number of valid IDs returned in the mediaList parameter.
mediaList
Specifies the ID numbers of the returned media.