10 lines
401 B
Matlab
10 lines
401 B
Matlab
function retCode = dcrestorefdlite(libName)
|
|
%DCRESTOREFDLITE Restore the required hidden file on all Dinkey FD Lite
|
|
%dongles attached to this computer.
|
|
% RETCODE = DCRESTOREFDLITE(LIBNAME) calls the API via the external
|
|
% library LIBNAME. RETCODE is the return code of the API call.
|
|
|
|
% Copyright Microcosm Ltd. DO NOT MODIFY THIS FILE.
|
|
|
|
retCode = calllib(libName, 'DCRestoreDinkeyFDLite');
|
|
end |