Microsoft Windows CE 3.0  

SetDriverData

Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.

This function is used to store any data your driver wishes to attach to the DDGPEobject, regardless of how you have subclassed the object in your driver.

The driver data is neither created nor released by the DDGPEobject; the driver is responsible for this. The DDGPEobject simply stores a pointer to the memory you have allocated. If you are setting the driver data, your driver should be sure to check that the driver data that is already attached to the selected DDGPEobject is properly released.

virtual void SetDriverData (
DDGPEDriverData *
pDriverData
);

Parameters

pDriverData
A pointer to the driver data that should be attached to this DDGPEobject. Your driver is responsible for allocating and releasing the memory associated with this object.

Return Values

None



 Last updated on Tuesday, July 13, 2004

© 2004 Microsoft Corporation. All rights reserved.