yasmine
utils.hpp
Go to the documentation of this file.
1 // //
3 // This file is part of the Seadex yasmine ecosystem (http://yasmine.seadex.de). //
4 // Copyright (C) 2016-2017 Seadex GmbH //
5 // //
6 // Licensing information is available in the folder "license" which is part of this distribution. //
7 // The same information is available on the www @ http://yasmine.seadex.de/Licenses.html. //
8 // //
10 
11 
12 #ifndef UTILS_50FAC970_4B2B_46F8_91B8_16F5A7DC3D9B
13 #define UTILS_50FAC970_4B2B_46F8_91B8_16F5A7DC3D9B
14 
15 
16 #include "hermes/hermes_backward_compatibility.hpp"
17 
18 
19 #ifdef WIN32
20 
21 
22 #ifndef WIN32_LEAN_AND_MEAN
23 #define WIN32_LEAN_AND_MEAN
24 #endif
25 
26 #ifndef SX_NO_WINDOWS_H
27  #include <windows.h>
28 #endif
29 
30 
31 #endif
32 
33 
34 namespace sxy
35 {
36 
37 
38 namespace utils
39 {
40 
41 
42 #ifdef WIN32
43 
44 
49 void set_window_size( const SHORT _width, const SHORT _height );
50 
53 void maximize_window();
54 
55 
56 #endif
57 
58 
59 }
60 
61 
62 }
63 
64 
65 #endif
Definition: adapter_cpp11.hpp:21