NWSMPutOneLName

Places one data set name into a data set name list or a selection list.

Syntax

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

Parameters

buffer

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

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

0xFFFBFFFB

NWSMUT_OUT_OF_MEMORY

0xFFFBFFFD

NWSMUT_INVALID_PARAMETER

0xFFFBFFFA

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

Remarks

NWSMPutOneLName is similar to NWSMPutOneName. However, NWSMPutOneLName requires the length of the data set name.

NWSMPutOneLName 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

NWSMPutOneName

NWSMPutOneLName Example

  #include <smsutapi.h> 
   
  CCODE      ccode; 
  void HUGE *buffer; 
  UINT32     nameSpaceType, selectionType, len; 
  STRING     sep1, sep2, name; 
  NWBOOLEAN reverseOrder; 
   
  len = strlen(name); 
  ccode = NWSMPutOneLName(&buffer, nameSpaceType, selectionType, reverseOrder, sep1, sep2, len, name);