Core Function HWND
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> HWND( ) </pre> === Description === Get the HWND of the hidden window used by this program (It handles hotkeys etc). === Parameters === None. === Return Value === None...") |
m (1 revision) |
||
| (3 intermediate revisions by one user not shown) | |||
| Line 13: | Line 13: | ||
=== Return Value === | === Return Value === | ||
| − | + | Success: The HWND of the hidden window used by this program. | |
| + | |||
| + | Failure: @PTRZero | ||
=== Remarks === | === Remarks === | ||
| − | + | If this version of Sputnik does not support anything *windows/gui* then HWND() will probably return @PTRZero | |
=== Example === | === Example === | ||
Latest revision as of 12:37, 14 June 2015
HWND( )
Contents |
Description
Get the HWND of the hidden window used by this program (It handles hotkeys etc).
Parameters
None.
Return Value
Success: The HWND of the hidden window used by this program.
Failure: @PTRZero
Remarks
If this version of Sputnik does not support anything *windows/gui* then HWND() will probably return @PTRZero
Example
my $HWND = HWND(); print ( "HWND is: $HWND\n" );