Uses of Class
com.jniwrapper.win32.Msg

Packages that use Msg
com.jniwrapper.win32 The com.jniwrapper.win32 package contains classes that provide basic functionality for Win32 platform. 
com.jniwrapper.win32.hook The com.jniwrapper.win32.hook package contains classes, which allows you to work with native hooks, such as keyboard hook, mouse hook, system idle tracker etc. 
com.jniwrapper.win32.ui The com.jniwrapper.win32.ui package contains auxilious classes for working with native windows, such as Wnd, which provides you with useful window related functionality, WindowProc, which is designed for obtaining native window messages etc. 
 

Uses of Msg in com.jniwrapper.win32
 

Methods in com.jniwrapper.win32 with parameters of type Msg
 boolean ProcessMessageListener.onMessage(Msg msg)
          Invoked when the new message occures in the OLE message loop.
 boolean MessageLoopListener.onMessage(Msg msg)
          Invoked when the new message occures in the OLE message loop.
 

Constructors in com.jniwrapper.win32 with parameters of type Msg
Msg(Msg that)
           
 

Uses of Msg in com.jniwrapper.win32.hook
 

Methods in com.jniwrapper.win32.hook that return Msg
 Msg SysMsgProcEvent.getMsg()
           
 Msg GetMsgEvent.getMsg()
          Returns the message.
 

Constructors in com.jniwrapper.win32.hook with parameters of type Msg
GetMsgEvent(java.lang.Object source, boolean messageRemoved, Msg msg)
          Creates instance of the GetMsgEvent
SysMsgProcEvent(java.lang.Object source, long code, Msg msg)
           
 

Uses of Msg in com.jniwrapper.win32.ui
 

Methods in com.jniwrapper.win32.ui with parameters of type Msg
 boolean Wnd.peekMessage(Msg msg, long filterMin, long filterMax, boolean remove)