Jump to content

WinIsWPDServerReady: Difference between revisions

From EDM2
mNo edit summary
Line 1: Line 1:
;WinIsWPDServerReady() : Determine the readiness of the Workplace Shell [[DSOM]] server.
Determine the readiness of the Workplace Shell [[DSOM]] server.


=== Parameters ===
==Syntax==
WinIsWPDServerReady()


=== Returns ===
== Parameters ==
 
== Returns ==
True if successful, false if not successful.
True if successful, false if not successful.
*[[TRUE]]
*[[TRUE]]
*[[FALSE]]
*[[FALSE]]


=== Define (C/C++) ===
== Define (C/C++) ==
INCL_WINWORKPLACE
INCL_WINWORKPLACE


=== Calling Convention ===
== Calling Convention ==
[[Cdecl32]]
[[Cdecl32]]


=== Example Code ===
== Example Code ==
  ...
  ...
  BOOL rc;
  BOOL rc;
Line 21: Line 24:
  ...
  ...


=== Related Functions ===
== Related Functions ==
*[[WinIsSOMDDReady]]
*[[WinIsSOMDDReady]]
*[[WinRestartWPDServer]]
*[[WinRestartWPDServer]]
*[[WinRestartSOMDD]]
*[[WinRestartSOMDD]]


=== Notes ===
== 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.
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.
You can also see if the DSOM server process is running with the WPDSINIT.EXE command-line program.


=== OS Version Introduced ===
== OS Version Introduced ==
OS/2 Warp 3.0 and above
OS/2 Warp 3.0 and above


[[Category:Win]]
[[Category:Win]]

Revision as of 05:12, 20 May 2018

Determine the readiness of the Workplace Shell DSOM server.

Syntax

WinIsWPDServerReady()

Parameters

Returns

True if successful, false if not successful.

Define (C/C++)

INCL_WINWORKPLACE

Calling Convention

Cdecl32

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