NWSMPutNextLName

Continues the data set name insertion process started by calling NWSMPutFirstLName and places the next data set name into a date set name list or a selection list.

Syntax

  #include <smsutapi.h> 
   
  CCODE NWSMPutNextLName ( 
     void SM_HUGE          **buffer, 
     SMS_HANDLE SM_HUGE    *handle, 
     UINT32                nameSpaceType, 
     UINT32                selectionType, 
     NWBOOLEAN             reverseOrder, 
     void                  *sep1, 
     void                  *sep2, 
     UINT32                nameLength, 
     void                 *name);
  

Parameters

buffer

(IN/OUT) Points to the NWSM_DATA_SET_NAME_LIST or NWSM_SELECTION_LIST structure to receive the data set name.

handle

(IN) Points to the name handle returned by NWSMPutFirstName or NWSMPutFirstLName.

nameSpaceType

(IN) Specifies the name space type of name (see nameSpaceType Values).

selectionType

(IN) Specifies the selection type for a selection list (see selectionType Values).

reverseOrder

(IN) Specifies the order of the characters in name, sep1, and sep2, when placed into buffer as returned by NWSMTSGetNameSpaceTypeInfo:

  • TRUE Reverse the names
  • FALSE Do not reverse the names
sep1

(IN) Points to the first separator used for paths in the specified name space as returned by NWSMTSGetNameSpaceTypeInfo.

sep2

(IN) Points to the second separator used for paths in the specified name space as returned by NWSMTSGetNameSpaceTypeInfo.

nameLength

(IN) Specifies the number of bytes within name to put into the list.

name

(IN) Points to the name of the data set as it exists in the specified name space.

Return Values

The following table lists the return values associated with the function.

0x00000000

Successful

0xFFFBFFFD

NWSMUT_INVALID_PARAMETER

0xFFFBFFFB

NWSMUT_OUT_OF_MEMORY

0xFFFBFFFA

NWSMUT_BUFFER_OVERFLOW: The list of names or paths is greater than 255.

Remarks

NWSMPutNextLName is similar to NWSMPutNextName. However, NWSMPutNextLName requires the length of the data set name.

NWSMPutNextLName also supports data set names in Unicode format.

If there is not enough space for the name, the buffer is resized. If buffer is set to NULL, memory is allocated to it. You are responsible to free the memory allocated by buffer.

If buffer contains a data set name list, selectionType must be set to zero. If buffer contains a selection list, selectionType must be set to a selection type.

If reverseOrder is TRUE, C:\\SYSTEM\\TEMP.EXE would be EXE.TEMP\\SYSTEM\\:C.

See Also

NWSMCloseName, NWSMPutFirstName, NWSMPutNextName