Example #1
0
 void dataDistributionLoggingCb(IntPtr opaque, DDM_LOG_LEVEL level, [In][MarshalAs(UnmanagedType.LPStr)] string source, [In][MarshalAs(UnmanagedType.LPStr)] string function, [In][MarshalAs(UnmanagedType.LPStr)] string errorStr)
 {
     IDataDistributionCallback_cbs.OnLogging(opaque, level, source, function, errorStr);
 }
Example #2
0
 void dataDistributionCompletelyDisconnectedCb([In] IntPtr opaque, [In][MarshalAs(UnmanagedType.LPStr)] string source, [In][MarshalAs(UnmanagedType.LPStr)] string errorStr)
 {
     IDataDistributionCallback_cbs.OnCompletelyDisconnected(opaque, source, errorStr);
 }
Example #3
0
 string dataDistributionConfigurationCb([In] IntPtr opaque, [In][MarshalAs(UnmanagedType.LPStr)] string channelName, [In][MarshalAs(UnmanagedType.LPStr)] string key, [In][MarshalAs(UnmanagedType.LPStr)] string value)
 {
     return(IDataDistributionCallback_cbs.OnConfiguration(opaque, channelName, key, value));
 }