Skip to content

Commit ba301b4

Browse files
author
Simon Hofmann
committedAug 3, 2020
(#17) Started window_manager.h interface
1 parent 366626e commit ba301b4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

Diff for: ‎src/window_manager.h

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#pragma once
2+
#ifndef WINDOW_MANAGER_H
3+
#define WINDOW_MANAGER_H
4+
5+
#include <vector>
6+
#include <string>
7+
#include "types.h"
8+
9+
std::vector<int32_t> getWindows();
10+
MMRect getWindowRect(const int32_t windowHandle);
11+
12+
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.