WinIsWPDServerReady: Difference between revisions
Appearance
WinIsWPDServerReady moved to OS2 API:WinIsWPDServerReady |
No edit summary |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
Determine the readiness of the Workplace Shell [[DSOM]] server. | |||
==Syntax== | |||
WinIsWPDServerReady() | |||
== Parameters == | |||
No parameters. | |||
== Returns == | |||
True if successful, false if not successful. | |||
*[[TRUE]] | |||
*[[FALSE]] | |||
== Define (C/C++) == | |||
INCL_WINWORKPLACE | |||
== Calling Convention == | |||
[[Cdecl32]] | |||
== Example Code == | |||
... | |||
BOOL rc; | |||
... | |||
rc = WinIsWPDServerReady(); | |||
... | |||
== Related Functions == | |||
*[[WinIsSOMDDReady]] | |||
*[[WinRestartWPDServer]] | |||
*[[WinRestartSOMDD]] | |||
== Notes == | |||
The Workplace Shell uses the Distributed SOM (DSOM) framework from the System Object Model ([[SOM]]) for cross-process calls. A [[DSOM]] server must be running to allow cross-process calls. This API call, WinIsWPDServerReady, determines if the DSOM server process has been started. | |||
You can also see if the DSOM server process is running with the WPDSINIT.EXE command-line program. | |||
== OS Version Introduced == | |||
OS/2 Warp 3.0 and above | |||
[[Category:Win]] |
Latest revision as of 18:17, 15 June 2025
Determine the readiness of the Workplace Shell DSOM server.
Syntax
WinIsWPDServerReady()
Parameters
No parameters.
Returns
True if successful, false if not successful.
Define (C/C++)
INCL_WINWORKPLACE
Calling Convention
Example Code
... BOOL rc; ... rc = WinIsWPDServerReady(); ...
Related Functions
Notes
The Workplace Shell uses the Distributed SOM (DSOM) framework from the System Object Model (SOM) for cross-process calls. A DSOM server must be running to allow cross-process calls. This API call, WinIsWPDServerReady, determines if the DSOM server process has been started.
You can also see if the DSOM server process is running with the WPDSINIT.EXE command-line program.
OS Version Introduced
OS/2 Warp 3.0 and above