Jump to content

DosTrueGetMessage: Difference between revisions

From EDM2
Created page with "==Description== This function ask a real message. MSG.DLL os2.h ==Syntax== <PRE> LONG DosTrueGetMessage(void * MsgSeg, PInsertTable Table, LONG TableSize, char * Buf, ..."
 
Ak120 (talk | contribs)
mNo edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Description==
This function ask a real message.
This function ask a real message.


MSG.DLL os2.h
MSG.DLL <os2.h>


==Syntax==
==Syntax==
<PRE>
DosTrueGetMessage(MsgSeg, Table, TableSize, Buf, BufSize, MsgNumber, FileName, MsgSize)
LONG DosTrueGetMessage(void * MsgSeg, PInsertTable Table, LONG TableSize, char * Buf,  
                      LONG BufSize, LONG MsgNumber,char * FileName, LONG * MsgSize);
</PRE>


==Parameters==
==Paramater==
*MsgSeg (void *)
*Table
*LONG TableSize
*char * Buf,
*LONG BufSize
*LONG MsgNumber
*char * FileName
*LONG * MsgSize


==Return Code==
==Return==
*LONG


==Remarks==
==Example Code==
===C Binding===
<PRE>
</PRE>
===MASM Binding===
<PRE>
</PRE>
==Related Functions==
==Related Functions==
*  
* [[DosGetMessage]]
 


[[Category:The OS/2 API Project]]
[[Category:Dos]]

Latest revision as of 22:47, 7 June 2019

This function ask a real message.

MSG.DLL <os2.h>

Syntax

DosTrueGetMessage(MsgSeg, Table, TableSize, Buf, BufSize, MsgNumber, FileName, MsgSize)

Paramater

  • MsgSeg (void *)
  • Table
  • LONG TableSize
  • char * Buf,
  • LONG BufSize
  • LONG MsgNumber
  • char * FileName
  • LONG * MsgSize

Return

  • LONG

Related Functions