SplStdDelete: Difference between revisions
Appearance
Created page with "SplStdDelete deletes the PM_Q_STD buffer identified by hstd. Any data in the buffer is lost. ==Syntax== SplStdDelete(hstd); ==Parameters== ; hstd (HSTD) - input : The hand..." |
(No difference)
|
Latest revision as of 19:41, 19 November 2019
SplStdDelete deletes the PM_Q_STD buffer identified by hstd. Any data in the buffer is lost.
Syntax
SplStdDelete(hstd);
Parameters
- hstd (HSTD) - input
- The handle to PM_Q_STD data.
Return Code
- fSuccess (BOOL) - returns
- Return codes.
This function returns BOOLEAN (fSuccess): .
- TRUE Success
- FALSE Error
Example Code
#include <os2.h> HSTD hstd; /* The handle to PM_Q_STD data. */ BOOL fSuccess; /* Return codes. */ fSuccess = SplStdDelete(hstd);