| Previous | Contents | Index |
Begin the body of a message which is being enqueued.
status = PMDF_start_message_body (nq_context)
Argument Data type Access Mechanism nq_context context pointer read/write reference
status = PMDFstartMessageBody (nq_context)
int PMDFstartMessageBody(PMDF_nq **nq_context)
nq_context
A message enqueue context created withPMDFstartMessageEnvelope.
After the message header has been written,PMDFstartMessageBodyshould be called to begin the message body. If the message has no body, thenPMDFenqueueMessageshould be called without callingPMDFstartMessageBody. AfterPMDFstartMessageBodyhas been called, eitherPMDFwriteLineorPMDFwriteTextmust be used to write the message body. Once the message body is complete,PMDFenqueueMessageshould be used to enqueue the message.
PMDF__OK Normal, successful completion. PMDF__BADCONTEXT Illegal or corrupt context. Message body not started.
| Previous | Next | Contents | Index |