Jump to content

RMDeleteDetectedData: Difference between revisions

From EDM2
Created page with "This rminfo service deletes the detected data (previous.dat) from the previous boot. ==Syntax== RMDeleteDetectedData(DeleteFlags); ==Parameters== ; DeleteFlags (USHORT) -..."
 
(No difference)

Latest revision as of 23:54, 31 July 2018

This rminfo service deletes the detected data (previous.dat) from the previous boot.

Syntax

RMDeleteDetectedData(DeleteFlags);

Parameters

DeleteFlags (USHORT) - input
The following are possible values:
*RM_DELETE_DEFAULT : Deletes with default options.

Return Code

rc (APIRET) - returns
On systems where the Resource Manager driver is not installed, the library interface code will return RMRC_NOT_INSTALLED.

Other possible return values follow:

  • RMRC_NO_DETECTED_DATA
  • RMRC_SUCCESS

Example Code

C

#include <os2.h>
#include <rmcalls.h>

USHORT    DeleteFlags;
APIRET    rc;

rc = RMDeleteDetectedData(DeleteFlags);