mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 12:23:29 +00:00
- Create a branch to drop my ndisuio work svn path=/branches/wlan-bringup/; revision=54809
17 lines
281 B
C
17 lines
281 B
C
#ifndef __MULTIMON_H
|
|
#define __MULTIMON_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
HMONITOR WINAPI MonitorFromRect(LPCRECT,DWORD);
|
|
HMONITOR WINAPI MonitorFromWindow(HWND,DWORD);
|
|
HMONITOR WINAPI MonitorFromPoint(POINT,DWORD);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __MULTIMON_H */
|