Windows APIs are very well documented by Microsoft. The WinAPIs provides developers with a way for their applications to interact with the Windows Operating Systems.
Some common ones are -
Eg.
DWORD dwVariable = 42;
Used to represent size of an object. 32-bit System → 32-bit unsigned integer. 64-bit system → 64-bit unsigned integer.
SIZE_T sVariable = sizeof(int);
Indicates the absence of a specific data type.
void* pVariable = NULL; //This is same as PVOID
PVOID pVariable = &someData;
HANDLE hFile = CreateFile(...);
HMODULE hModule = GetModuleHandle(...);
LPCSTR lpcString = "Hello, World!";
PCSTR pcString = "Hello, World!";