19 lines
650 B
SAS
19 lines
650 B
SAS
/**
|
|
@file
|
|
@brief Saves an in-memory CAS table back to persistent storage
|
|
@details There are three versions of this macro, one per build
|
|
target. The interface is the same. This version is SERVER and
|
|
is a no-op as CAS is not available on this platform.
|
|
|
|
@param [in] libds library.dataset of the CAS table to save
|
|
@param [in] mdebug= (0) Set to 1 to enable verbose logging
|
|
|
|
@author 4GL Apps Ltd
|
|
@copyright 4GL Apps Ltd. This code may only be used within Data
|
|
Controller and may not be re-distributed or re-sold without the
|
|
express permission of 4GL Apps Ltd.
|
|
**/
|
|
|
|
%macro dc_cassave(libds, mdebug=0);
|
|
%mend dc_cassave;
|