Jump to content

DrvRemove: Difference between revisions

From EDM2
Created page with "DrvRemove informs the hardcopy driver that it is about to be removed from the system (deleted from the hard disk). ==Syntax== DrvRemove(); ==Parameters== None. ==Return Cod..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
DrvRemove informs the hardcopy driver that it is about to be removed from the system (deleted from the hard disk).  
DrvRemove informs the hardcopy driver that it is about to be removed from the system (deleted from the hard disk).


==Syntax==
==Syntax==
  DrvRemove();
  DrvRemove();
==Parameters==
==Parameters==
None.
None.
==Return Code==
==Return Code==
None.
None.
==Remarks==
==Remarks==
The driver is given the opportunity to remove data it owns from the INI file. The hardcopy driver does not use this entry point to delete any of its own data files unless they are created after installation.  
The driver is given the opportunity to remove data it owns from the INI file. The hardcopy driver does not use this entry point to delete any of its own data files unless they are created after installation.
 
It is the responsibility of the caller to remove the complete multifile driver by using extended attributes.
==Example Code==
<PRE>
#include <os2.h>


DrvRemove();
It is the responsibility of the caller to remove the complete multifile driver by using extended attributes.
</PRE>


[[Category:Gre]]
[[Category:Gre]]

Latest revision as of 08:01, 5 March 2020

DrvRemove informs the hardcopy driver that it is about to be removed from the system (deleted from the hard disk).

Syntax

DrvRemove();

Parameters

None.

Return Code

None.

Remarks

The driver is given the opportunity to remove data it owns from the INI file. The hardcopy driver does not use this entry point to delete any of its own data files unless they are created after installation.

It is the responsibility of the caller to remove the complete multifile driver by using extended attributes.