Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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));
 }