MFSH INTERR: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:MFSH_INTERR}} Declare an internal error and halt the system. ==Syntax== int far pascal MFSH_INTERR(pcMsg, cbMsg) ==Parameters== ; pcMsg: is a pointer to the..." |
|||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:MFSH_INTERR}} | {{DISPLAYTITLE:MFSH_INTERR}} | ||
Declare an internal error and halt the system. | Declare an internal error and halt the system. | ||
==Syntax== | ==Syntax== | ||
Line 6: | Line 6: | ||
==Parameters== | ==Parameters== | ||
; pcMsg: is a pointer to the message text. | ;pcMsg: is a pointer to the message text. | ||
; cbMsg: is the length of the message text. | ;cbMsg: is the length of the message text. | ||
==Returns== | ==Returns== | ||
There are no error returns. | There are no error returns. | ||
==Sample== | ==Sample== | ||
Line 21: | Line 21: | ||
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. | 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. | ||
[[Category:IFS]] | [[Category:IFS Interfaces]] |
Latest revision as of 21:34, 20 November 2019
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.