Skip to content

Commit

Permalink
fix: uia core calling conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed May 6, 2024
1 parent a9d1868 commit 30f1244
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/uia.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ namespace simplytest
BOOL (*UiaClientsAreListening)();

public:
HRESULT (*UiaHostProviderFromHwnd)(HWND, IRawElementProviderSimple **);
HRESULT (*UiaRaiseAutomationEvent)(IRawElementProviderSimple *, EVENTID);
LRESULT (*UiaReturnRawElementProvider)(HWND, WPARAM, LPARAM, IRawElementProviderSimple *);
HRESULT STDMETHODCALLTYPE (*UiaHostProviderFromHwnd)(HWND, IRawElementProviderSimple **);
HRESULT STDMETHODCALLTYPE (*UiaRaiseAutomationEvent)(IRawElementProviderSimple *, EVENTID);
LRESULT STDMETHODCALLTYPE (*UiaReturnRawElementProvider)(HWND, WPARAM, LPARAM, IRawElementProviderSimple *);

public:
static uia_core &get();
Expand Down

0 comments on commit 30f1244

Please sign in to comment.