19 lines
622 B
SAS
19 lines
622 B
SAS
/**
|
|
@file
|
|
@brief Loads a CAS table into memory
|
|
@details There are three versions of this macro, one per build
|
|
target. The interface is the same. This version is META and
|
|
is a no-op as CAS is not available on this platform.
|
|
|
|
@param [in] libds library.dataset of the CAS table to load
|
|
@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_casload(libds, mdebug=0);
|
|
%mend dc_casload;
|