Jump to content

MFSH_INTERR

From EDM2
Revision as of 21:34, 20 November 2019 by Martini (talk | contribs) (Remarks)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Declare an internal error and halt the system.

Syntax

int far pascal MFSH_INTERR(pcMsg, cbMsg)

Parameters

pcMsg
is a pointer to the message text.
cbMsg
is the length of the message text.

Returns

There are no error returns.

Sample

char far * pcMsg;
unsigned short cbMsg;

int far pascal MFSH_INTERR(pcMsg, cbMsg)

Remarks

This call should be used when an inconsistency is detected within the mini- FSD. This call does not return. An error message will be displayed and the system will be stopped. See the description of FSH_INTERR.