Skip to content

Commit

Permalink
Merge pull request #22 from ArtemGr/patch-1
Browse files Browse the repository at this point in the history
FindWindowA
  • Loading branch information
retep998 committed Dec 17, 2014
2 parents af839d5 + 89f67df commit 8b3d5d5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2822,6 +2822,12 @@ extern "system" {
lprc: *const RECT,
hbr: HBRUSH,
) -> c_int;
/// Retrieves a handle to the top-level window whose class name and window name match the specified strings.
/// cf. http://msdn.microsoft.com/library/windows/desktop/ms633499%28v=vs.85%29.aspx
pub fn FindWindowA (
lpClassName: LPCSTR,
lpWindowName: LPCSTR
) -> HWND;
pub fn GetClientRect(
hWnd: HWND,
lpRect: LPRECT,
Expand Down

0 comments on commit 8b3d5d5

Please sign in to comment.