Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:docs:fapi:dosinsmessage [2020/12/04 12:53] – prokushev | en:docs:fapi:dosinsmessage [2021/12/05 10:01] (current) – prokushev | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{logos:os2.gif? | + | {{page>en:templates:fapiint}} |
====== DosInsMessage ====== | ====== DosInsMessage ====== | ||
Line 5: | Line 5: | ||
This call inserts variable text string information into the body of a message. This is useful when messages are loaded before insertion text strings are known. | This call inserts variable text string information into the body of a message. This is useful when messages are loaded before insertion text strings are known. | ||
- | ==Syntax== | + | ===== Syntax ===== |
- | | + | |
- | ==Parameters== | + | <code c> |
- | ;IvTable (PCHAR FAR *) - input : List of double-word pointers. Each pointer points to an ASCIIZ or null terminated DBCS string (variable insertion text). 0 to 9 strings can be present. | + | DosInsMessage (IvTable, IvCount, MsgInput, MsgInLength, |
- | ; IvCount (USHORT) - input : 0-9 is the count of variable insertion text strings. If IvCount is 0, IvTable is ignored. | + | </ |
- | ; MsgInput (PSZ) - input : Address of the input message. | + | |
- | ; MsgInLength (USHORT) - input : Length, in bytes, of the input message. | + | ===== Parameters |
- | ; DataArea (PCHAR) - output : Address of the user storage that returns the updated message. If the message is too long to fit in the caller' | + | |
- | ; DataLength (USHORT) - input : Length, in bytes, of the user's storage area. | + | * IvTable ([[PCHAR]] FAR *) - input : List of double-word pointers. Each pointer points to an ASCIIZ or null terminated DBCS string (variable insertion text). 0 to 9 strings can be present. |
- | ; MsgLength (PUSHORT) - output : Address of the length, in bytes, of the updated message. | + | |
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | ===== Return Code ===== | ||
+ | |||
+ | rc ([[USHORT]]) - return | ||
- | ==Return Code== | ||
- | rc (USHORT) - return | ||
Return code descriptions are: | Return code descriptions are: | ||
- | * 0 NO_ERROR | ||
- | * 316 ERROR_MR_MSG_TOO_LONG | ||
- | * 320 ERROR_MR_INV_IVCOUNT | ||
- | ==Remarks== | + | * 0 NO_ERROR |
- | DosInsMessage returns an error indicating that IvCount is out of range when IvCount is greater than 9. A default message is also placed in the caller' | + | * 316 ERROR_MR_MSG_TOO_LONG |
+ | * 320 ERROR_MR_INV_IVCOUNT | ||
+ | |||
+ | ===== Remarks ===== | ||
+ | |||
+ | DosInsMessage returns an error indicating that IvCount is out of range when IvCount is greater than 9. A default message is also placed in the caller' | ||
%x sequence for %1through%9 is less than or equal to IvCount, then text insertion, by substitution for %x, is performed for all occurrences of %x in the body of the message. Otherwise text insertion is ignored and the %x sequence is returned unchanged in the message. Text insertion is performed for all text strings defined by IvCount and IvTable. | %x sequence for %1through%9 is less than or equal to IvCount, then text insertion, by substitution for %x, is performed for all occurrences of %x in the body of the message. Otherwise text insertion is ignored and the %x sequence is returned unchanged in the message. Text insertion is performed for all text strings defined by IvCount and IvTable. | ||
Variable data insertion does not depend on a blank character delimiter nor are blanks automatically inserted. | Variable data insertion does not depend on a blank character delimiter nor are blanks automatically inserted. | ||
- | ==Example Code== | + | ===== Example Code ===== |
- | ===C Binding=== | + | |
- | <PRE> | + | ==== C Binding ==== |
+ | |||
+ | <code c> | ||
#define INCL_DOSMISC | #define INCL_DOSMISC | ||
Line 47: | Line 57: | ||
USHORT | USHORT | ||
- | </PRE> | + | </code> |
- | ===MASM Binding=== | + | ==== MASM Binding ==== |
- | <PRE> | + | |
+ | <code asm> | ||
EXTRN DosInsMessage: | EXTRN DosInsMessage: | ||
INCL_DOSMISC | INCL_DOSMISC | ||
Line 62: | Line 73: | ||
PUSH@ WORD MsgLength | PUSH@ WORD MsgLength | ||
CALL | CALL | ||
+ | |||
+ | </ | ||
Returns WORD | Returns WORD | ||
- | </ | ||
- | ====== Note ====== | + | ===== Note ===== |
Text based on [[http:// | Text based on [[http:// |