Previous | Next | Contents | Index |
Write a "Date:" header line to a message being enqueued.
argument informationstatus = PMDF_write_date (nq_context)
Argument | Data type | Access | Mechanism |
---|---|---|---|
nq_context | context pointer | read/write | reference |
argument informationstatus = PMDFwriteDate (nq_context)
int PMDFwriteDate(PMDF_nq **nq_context) |
nq_context
A message enqueue context created withPMDFstartMessageEnvelope
.
PMDFwriteDate
will output a "Date:" header line to a message header. The current system date and time will be used in constructing this header line.PMDFwriteDate
should be called afterPMDFstartMessageHeader
and prior to callingPMDFstartMessageBody
. If it is called afterPMDFstartMessageBody
, then it's output will become part of the message body.
PMDF__OK Normal, successful completion. PMDF__BADCONTEXT Illegal or corrupt context. "Date:" header line not written.
Previous | Next | Contents | Index |