WinSetObjectData: Difference between revisions
Appearance
No edit summary |
|||
Line 16: | Line 16: | ||
INCL_WINWORKPLACE | INCL_WINWORKPLACE | ||
=== Calling | === Calling Convention === | ||
[[Cdecl32]] | [[Cdecl32]] | ||
Revision as of 19:30, 18 January 2017
WinSetObjectData
- WinSetObjectData(objectHndl, setupString)
- Set the data on a workplace shell object.
Parameters
- objectHndl - HOBJECT - input
- The object handle.
- setupString - PSZ - input
- Object specific parameters.
Constants
Returns
This function returns a BOOL with the values of:
Define (C/C++)
INCL_WINWORKPLACE
Calling Convention
Example Code
... HOBJECT hobj; PSZ setupString; BOOL rc; ... rc = WinSetObjectData (hobj, setupString); ...