1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
use *;
/// \[[learn.microsoft.com](https://learn.microsoft.com/en-gb/windows/win32/api/processthreadsapi/nf-processthreadsapi-getcurrentprocessid)\]
/// GetCurrentProcessId
///
/// ### Example
/// ```rust
/// # use hwnd::*;
/// let process_id = get_current_process_id();
/// assert!(process_id != 0);
/// ```
/// \[[learn.microsoft.com](https://learn.microsoft.com/en-gb/windows/win32/api/processthreadsapi/nf-processthreadsapi-getcurrentthreadid)\]
/// GetCurrentThreadId
///
/// ### Example
/// ```rust
/// # use hwnd::*;
/// let thread_id = get_current_thread_id();
/// assert!(thread_id != 0);
/// ```