|
RETURN_HANDLE |
|
|
RETURN_HANDLE( handle )
Returns the function value of a handle.
Example
///////////////////////////////////////////////////////////////////////////// // int _gethwnd( mb_interpreter_t* s, void** l ) //( BOOL bState ); { BEGIN_PARSE( s, l ) OPT_STRING( pWindow, NULL ) END_PARSE
HWND hWnd = g_this->GetHWND( pWindow );
RETURN_HANDLE( hWnd ); } endfunc
|