MF_CLIENT_STATE_FILE

Specifies the file to be used on the server to store state information.

Note: This routine is supported for native COBOL only.

Syntax:

call "MF_CLIENT_STATE_FILE" using filename
                                  server-status

Parameters:

  Using call prototype (see Key) Picture (32-bit systems)
filename pic x(255). pic x(255).
server-status cblt-x1-compx pic x comp-x.

On Entry:

filename The filename.

On Exit:

server-status The status of the operation. See State Maintenance Routines Status.

Example:

 working-storage section. 
 ...
 01 state-status             pic x comp-x.
 01 state-filename           pic x(255)
               value "MF-STATE-SAVE.DAT".
 ...
 procedure division. 
 ...
     call "MF_CLIENT_STATE_FILE" using state-filename
                                       server-status
 ...