We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87c48b9 commit e65e3b5Copy full SHA for e65e3b5
+DSS_MATLAB/APIUtil.m
@@ -22,6 +22,7 @@
22
23
MfilePath = fileparts(mfilename('fullpath'));
24
DLLfilePath = fullfile(MfilePath, obj.libname);
25
+ PropertiesMOfilePath = fullfile(MfilePath, 'messages', 'properties-en-US.mo');
26
if libisloaded(obj.libname)
27
return;
28
end
@@ -34,6 +35,8 @@
34
35
% Try loading using the thunk file, otherwise use the dynamic version
36
loadlibrary(DLLfilePath, @DSS_MATLAB.dss_capi_no_thunk);
37
38
+ calllib(obj.libname, 'DSS_Start', 0);
39
+ calllib(obj.libname, 'DSS_SetPropertiesMO', PropertiesMOfilePath);
40
obj.libraryWasLoaded = 1;
41
warning(orig_state);
42
0 commit comments