pragma Preelaborate (OS2Lib);
|
Known child units
|
Type Summary
|
Constants and Named Numbers
|
Other Items:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type PULONG is access all ULONG;
|
Coprocessor stack register element.
|
|
|
|
|
|
|
|
|
|
|
|
procedure Must_Not_Fail (Return_Code : OS2Lib.APIRET);
pragma Inline (Must_Not_Fail);
|
Many OS/2 functions return APIRET and are not supposed to fail. In C
style, these would be called as procedures, disregarding the returned
value. This procedure can be used to achieve the same effect with a
call of the form: Must_Not_Fail (Some_OS2_Function (...));
|
|
procedure Sem_Must_Not_Fail (Return_Code : OS2Lib.APIRET);
pragma Inline (Sem_Must_Not_Fail);
|
Similar to Must_Not_Fail, but used in the case of DosPostEventSem,
where the "error" code ERROR_ALREADY_POSTED is not really an error.
|
|