Add Original SDK

This commit is contained in:
2026-05-06 07:47:36 +02:00
parent 2915e04380
commit 0ed627517a
674 changed files with 89334 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
function retCode = dcgetdiagnosticinfo(libName, filename)
%DCGETDIAGNOSTICINFO Call the DinkeyChange API to write diagnostic
%information to a file.
% RETCODE = DCGETDIAGNOSTICINFO(LIBNAME,FILENAME) calls the API via the
% external library LIBNAME, writing diagnostic information to the file
% specified in FILENAME. FILENAME can be an absolute or relative path. If
% FILENAME does not end in '.dlpf', it will be appended automatically.
% RETCODE is the return code of the API call.
% Copyright Microcosm Ltd. DO NOT MODIFY THIS FILE.
retCode = calllib(libName, 'DCGetDiagnosticInfo', filename);
end