Metadata-Version: 2.1
Name: ctypes_windows
Version: 0.10
Summary: Useful functions for automation, no dependencies
Home-page: https://github.com/hansalemaos/ctypes_windows
Author: Johannes Fischer
Author-email: <aulasparticularesdealemaosp@gmail.com>
License: MIT
Keywords: ctypes,automation
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Editors :: Text Processing
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Indexing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE.rst


# Useful functions for automation, no dependencies



```python

pip install ctypes-windows

```



```python



Just some useful functions, pure Python 



get_mouse_position()



get_resolution()



mouse_click(x=None, y=None)



resize_window(hwnd: int, position: tuple)



window_FORCEMINIMIZE(hwnd: int)



window_HIDE(hwnd: int)



window_MAXIMIZE(hwnd: int)



window_MINIMIZE(hwnd: int)



window_NORMAL(hwnd: int)



window_RESTORE(hwnd: int)



window_SHOW(hwnd: int)



window_SHOWDEFAULT(hwnd: int)



window_SHOWMINIMIZED(hwnd: int)



window_SHOWMINNOACTIVE(hwnd: int)



window_SHOWNA(hwnd: int)



window_SHOWNOACTIVATE(hwnd: int)



```

