cimnik2999
Programmer
how do i send a function that is inside a class to an API call? i need to know so that i can determin if the mouse is over the taskbar or not.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
PrevWndProc := SetWindowLong(hWnd, GWL_WNDPROC, TTaskbar.WindowProc);
PrevWndProc := SetWindowLong(hWnd, GWL_WNDPROC, WindowProc);
PrevWndProc := SetWindowLong(hWnd, GWL_WNDPROC, @TTaskbar.WindowProc);
PrevWndProc := SetWindowLong(hWnd, GWL_WNDPROC, @WindowProc);