libintrovirt v0.57.4
IntroVirt introspection library
Loading...
Searching...
No Matches
introvirt::windows::win32k::NtUserPostMessage Class Referenceabstract

Handler class for the NtUserPostMessage system call. More...

#include <NtUserPostMessage.hh>

Inheritance diagram for introvirt::windows::win32k::NtUserPostMessage:
Collaboration diagram for introvirt::windows::win32k::NtUserPostMessage:

Public Member Functions

virtual uint64_t hWnd () const =0
 Getter for hWnd.
 
virtual WindowMessage Msg () const =0
 Getter for Msg.
 
virtual uint64_t wParam () const =0
 Getter for wParam.
 
virtual uint64_t lParam () const =0
 Getter for lParam.
 
virtual void hWnd (uint64_t hWnd)=0
 Setter for hWnd.
 
virtual void Msg (WindowMessage Msg)=0
 Setter for Msg.
 
virtual void wParam (uint64_t wParam)=0
 Setter for wParam.
 
virtual void lParam (uint64_t lParam)=0
 Setter for lParam.
 
virtual bool result () const =0
 Get the result of the call.
 
virtual void result (bool value)=0
 Set the result of the calls.
 
- Public Member Functions inherited from introvirt::windows::WindowsSystemCall
virtual SystemCallIndex index () const =0
 Get the system call number.
 
- Public Member Functions inherited from introvirt::SystemCall
virtual const std::string & name () const =0
 Get the name of the system call.
 
virtual void write (std::ostream &os=std::cout) const =0
 Write a human-readable description of this system call.
 
virtual Json::Value json () const =0
 
virtual bool will_return () const =0
 
virtual void data (const std::string &key, const std::shared_ptr< void > &value)=0
 Store arbitrary data with the SystemCall.
 
virtual void data (const std::string &key, std::shared_ptr< void > &&value)=0
 Store arbitrary data with the SystemCall.
 
virtual std::shared_ptr< void > data (const std::string &key)=0
 Retrieve arbitrary data stored with the SystemCall.
 
virtual std::shared_ptr< const void > data (const std::string &key) const =0
 Retrieve arbitrary data stored with the SystemCall.
 
virtual bool supported () const =0
 Check if this system call is supported by a more specific handler.
 
virtual void handle_return_event (Event &event)=0
 Handle a system call return event.
 
virtual ~SystemCall ()=default
 Destroy the instance.
 

Static Public Member Functions

static bool inject (uint64_t hWnd, WindowMessage Msg, uint64_t wParam, uint64_t lParam)
 

Detailed Description

Handler class for the NtUserPostMessage system call.

Member Function Documentation

◆ hWnd() [1/2]

virtual uint64_t introvirt::windows::win32k::NtUserPostMessage::hWnd ( ) const
pure virtual

Getter for hWnd.

Returns
The value of the hWnd parameter

◆ hWnd() [2/2]

virtual void introvirt::windows::win32k::NtUserPostMessage::hWnd ( uint64_t  hWnd)
pure virtual

Setter for hWnd.

Parameters
hWndThe value to set for the hWnd parameter

◆ inject()

static bool introvirt::windows::win32k::NtUserPostMessage::inject ( uint64_t  hWnd,
WindowMessage  Msg,
uint64_t  wParam,
uint64_t  lParam 
)
static

◆ lParam() [1/2]

virtual uint64_t introvirt::windows::win32k::NtUserPostMessage::lParam ( ) const
pure virtual

Getter for lParam.

Returns
The value of the lParam parameter

◆ lParam() [2/2]

virtual void introvirt::windows::win32k::NtUserPostMessage::lParam ( uint64_t  lParam)
pure virtual

Setter for lParam.

Parameters
lParamThe value to set for the lParam parameter

◆ Msg() [1/2]

virtual WindowMessage introvirt::windows::win32k::NtUserPostMessage::Msg ( ) const
pure virtual

Getter for Msg.

Returns
The value of the Msg parameter

◆ Msg() [2/2]

virtual void introvirt::windows::win32k::NtUserPostMessage::Msg ( WindowMessage  Msg)
pure virtual

Setter for Msg.

Parameters
MsgThe value to set for the Msg parameter

◆ result() [1/2]

virtual bool introvirt::windows::win32k::NtUserPostMessage::result ( ) const
pure virtual

Get the result of the call.

Exceptions
InvalidMethodExceptionif the call has not yet returned

◆ result() [2/2]

virtual void introvirt::windows::win32k::NtUserPostMessage::result ( bool  value)
pure virtual

Set the result of the calls.

Exceptions
InvalidMethodExceptionif the call has not yet returned

◆ wParam() [1/2]

virtual uint64_t introvirt::windows::win32k::NtUserPostMessage::wParam ( ) const
pure virtual

Getter for wParam.

Returns
The value of the wParam parameter

◆ wParam() [2/2]

virtual void introvirt::windows::win32k::NtUserPostMessage::wParam ( uint64_t  wParam)
pure virtual

Setter for wParam.

Parameters
wParamThe value to set for the wParam parameter

The documentation for this class was generated from the following file: