Creates or opens a new job object
https://msdn.microsoft.com/en-us/library/windows/desktop/ms682409%28v=vs.85%29.aspx
Note: the two params to this are omitted because all implementations pass null for them both
Get job limit and state information
https://msdn.microsoft.com/en-us/library/windows/desktop/ms684925%28v=vs.85%29.aspx
Note: The infoLength parameter is omitted because implementions handle passing it
Note: The returnLength parameter is omitted because all implementations pass null
Set job limit and state information
https://msdn.microsoft.com/en-us/library/windows/desktop/ms686216%28v=vs.85%29.aspx
Note: The infoLength parameter is omitted because implementions handle passing it
Locks the specified region of the process's virtual address space into physical
memory, ensuring that subsequent access to the region will not incur a page fault.
Locks the specified region of the process's virtual address space into physical
memory, ensuring that subsequent access to the region will not incur a page fault.
Parameters:
address - A pointer to the base address of the region of pages to be locked.
size - The size of the region to be locked, in bytes.
Retrieves information about a range of pages within the virtual address space of a specified process.
Note: the dwLength parameter is handled by the underlying implementation
Parameters:
handle - A handle to the process whose memory information is queried.
address - A pointer to the base address of the region of pages to be queried.
memoryInfo - A pointer to a structure in which information about the specified page range is returned.
Returns:
the actual number of bytes returned in the information buffer.
Retrieves the actual number of bytes of disk storage used to store a specified file.
https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-getcompressedfilesizew
Parameters:
lpFileName - the path string
lpFileSizeHigh - pointer to high-order DWORD for compressed file size (or null if not needed)
Returns:
the low-order DWORD for compressed file size
GetShortPathNameW
intGetShortPathNameW(String lpszLongPath,
char[] lpszShortPath,
int cchBuffer)
Retrieves the short path form of the specified path.
Parameters:
lpszLongPath - the path string
lpszShortPath - a buffer to receive the short name
cchBuffer - the size of the buffer
Returns:
the length of the string copied into lpszShortPath, otherwise zero for failure
Creates or opens a new job object
https://msdn.microsoft.com/en-us/library/windows/desktop/ms682409%28v=vs.85%29.aspx
Note: the two params to this are omitted because all implementations pass null for them both
Get job limit and state information
https://msdn.microsoft.com/en-us/library/windows/desktop/ms684925%28v=vs.85%29.aspx
Note: The infoLength parameter is omitted because implementions handle passing it
Note: The returnLength parameter is omitted because all implementations pass null
Set job limit and state information
https://msdn.microsoft.com/en-us/library/windows/desktop/ms686216%28v=vs.85%29.aspx
Note: The infoLength parameter is omitted because implementions handle passing it