Jump to content

WinInitialize: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
; WinInitialize( ''flOptions'' );  :  Initializes the PM facilities to be used by an application.
Initializes the PM facilities to be used by an application.
 
==Syntax==
WinInitialize( ''flOptions'' )


==Usage Explanation==
==Usage Explanation==
This function must be the first PM function called by any application thread intending to use PM or GPI services. The return value is sometimes needed by other functions and should be saved. WinTerminate can be called if a thread no longer needs these services. This API can only be called once per thread.
This function must be the first PM function called by any application thread intending to use PM or GPI services. The return value is sometimes needed by other functions and should be saved. [[WinTerminate]] can be called if a thread no longer needs these services. This API can only be called once per thread.


===Parameters===
===Parameters===
; ULONG ''flOptions'' (input)
;ULONG ''flOptions'' (input)
: The only allowed value is 0L.
: The only allowed value is 0L.


===Returns===
===Returns===
; HAB hab
;HAB hab
: This return value is a handle to an anchor block. The anchor block is a structure which is used by OS/2 to keep track of application specific error information, and the handle is needed for certain other PM functions, such as WinCreateMsgQueue. NULLHANDLE is returned if an error occurred.
: This return value is a handle to an anchor block. The anchor block is a structure which is used by OS/2 to keep track of application specific error information, and the handle is needed for certain other PM functions, such as [[WinCreateMsgQueue]]. NULLHANDLE is returned if an error occurred.


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

Revision as of 14:39, 7 September 2017

Initializes the PM facilities to be used by an application.

Syntax

WinInitialize( flOptions )

Usage Explanation

This function must be the first PM function called by any application thread intending to use PM or GPI services. The return value is sometimes needed by other functions and should be saved. WinTerminate can be called if a thread no longer needs these services. This API can only be called once per thread.

Parameters

ULONG flOptions (input)
The only allowed value is 0L.

Returns

HAB hab
This return value is a handle to an anchor block. The anchor block is a structure which is used by OS/2 to keep track of application specific error information, and the handle is needed for certain other PM functions, such as WinCreateMsgQueue. NULLHANDLE is returned if an error occurred.

Define (C/C++)

#define INCL_WINWINDOWMGR 

or

#define INCL_WIN

or

#define INCL_PM
#include <os2.h>

Sample Code

HAB hab;
ULONG flOptions = 0L;
HMQ hmq;

hab=WinInitialize(flOptions);
hmq=WinCreateMsgQueue(hab, 0L);

See Also