theLink 10.0
Loading...
Searching...
No Matches
MqMsgque_Help_CS_API

MqMsgque PACKAGE - access to a qualified help-messageMore...

+ Collaboration diagram for MqMsgque_Help_CS_API:

Functions

static string csmqmsgque.MqMsgque.Help (string tool)
  C#: [static] string Help(string tool) C-API
write csmqmsgque specific user-help to stderr
 
static string csmqmsgque.MqMsgque.HelpMsgque ()
  C#: [static] string HelpMsgque() C-API
return a page with the usage of all csmqmsgque specific options
 

Detailed Description

MqMsgque PACKAGE - access to a qualified help-message

Function Documentation

◆ Help()

static string csmqmsgque.MqMsgque.Help ( string tool)
inlinestatic

C#: [static] string Help(string tool) C-API
write csmqmsgque specific user-help to stderr

Definition at line 292 of file LibMqMsgque.cs.

292 {
293 IntPtr tool_cstr = Marshal.StringToHGlobalAnsi(tool);
294 IntPtr __retVal__L = Mq.MqHelp(tool_cstr);
295 Marshal.FreeHGlobal(tool_cstr);
296 return Marshal.PtrToStringAnsi(__retVal__L);
297 }

◆ HelpMsgque()

static string csmqmsgque.MqMsgque.HelpMsgque ( )
inlinestatic

C#: [static] string HelpMsgque() C-API
return a page with the usage of all csmqmsgque specific options

Definition at line 300 of file LibMqMsgque.cs.

300 {
301 IntPtr __retVal__L = Mq.MqHelpMsgque();
302 return Marshal.PtrToStringAnsi(__retVal__L);
303 }