JNative v1.3 project : see http://jnative.sf.net


org.xvolks.jnative.util
Interface WindowProc


public interface WindowProc

WindowProc this interface must be implemented to receive events from native window.
$Id: WindowProc.java,v 1.4 2006/06/09 20:44:05 mdenty Exp $; This software is released under the LGPL.


Method Summary
 int windowProc(int hwnd, int uMsg, int wParam, int lParam)
          Method windowProc recieve events from native window
 

Method Detail

windowProc

int windowProc(int hwnd,
               int uMsg,
               int wParam,
               int lParam)
Method windowProc recieve events from native window

Parameters:
hwnd - an int [in] Handle to the window.
uMsg - an int [in] Specifies the message.
wParam - an int [in] Specifies additional message information. The contents of this parameter depend on the value of the uMsg parameter.
lParam - an int Specifies additional message information. The contents of this parameter depend on the value of the uMsg parameter.
Returns:
an int The return value is the result of the message processing and depends on the message sent.

JNative v1.3 project : see http://jnative.sf.net