nstd-sys 0.13.0

Cross platform general purpose C library written in Rust.
Documentation
1
2
3
4
5
6
7
8
#ifndef NSTD_OS_WINDOWS_WINDOWS_H
#define NSTD_OS_WINDOWS_WINDOWS_H
#include <windows.h>

/// A raw handle to a resource managed by the Windows kernel.
typedef HANDLE NSTDWindowsHandle;

#endif