コード例 #1
0
ファイル: PSID.cs プロジェクト: dahall/Vanara
 /// <summary>Initializes a new instance of the <see cref="SafePSID"/> class.</summary>
 /// <param name="size">The size of memory to allocate, in bytes.</param>
 public SafePSID(SizeT size) : base(size)
 {
 }
コード例 #2
0
 public static extern void RtlMoveMemory([In] IntPtr Destination, [In] IntPtr Source, [In] SizeT Length);
コード例 #3
0
 public static extern void RtlZeroMemory(IntPtr Destination, SizeT Length);
コード例 #4
0
 public static extern bool GetProcessWorkingSetSize([In] HPROCESS hProcess, [Out] out SizeT lpMinimumWorkingSetSize, [Out] out SizeT lpMaximumWorkingSetSize);
コード例 #5
0
 public static extern bool SetProcessWorkingSetSize([In] HPROCESS hProcess, SizeT dwMinimumWorkingSetSize, SizeT dwMaximumWorkingSetSize);
コード例 #6
0
 public static extern IntPtr CreateFiber(SizeT dwStackSize, FiberProc lpStartAddress, [In] IntPtr lpParameter);
コード例 #7
0
 public static extern IntPtr CreateFiberEx(SizeT dwStackCommitSize, SizeT dwStackReserveSize, FIBER_FLAG dwFlags, FiberProc lpStartAddress, [In] IntPtr lpParameter);
コード例 #8
0
ファイル: EnclaveApi.cs プロジェクト: webworkeryang/Vanara
 public static extern bool LoadEnclaveData(IntPtr hProcess, IntPtr lpAddress, IntPtr lpBuffer, SizeT nSize, MEM_PROTECTION flProtect, IntPtr lpPageInformation, uint dwInfoLength, out SizeT lpNumberOfBytesWritten, out uint lpEnclaveError);
コード例 #9
0
ファイル: EnclaveApi.cs プロジェクト: webworkeryang/Vanara
 public static extern void CreateEnclave(IntPtr hProcess, IntPtr lpAddress, SizeT dwSize, SizeT dwInitialCommittment, EnclaveType flEnclaveType, IntPtr lpEnclaveInformation, uint dwInfoLength, out uint lpEnclaveError);
コード例 #10
0
ファイル: TlHelp32.cs プロジェクト: webworkeryang/Vanara
 public static extern bool Toolhelp32ReadProcessMemory(uint th32ProcessID, IntPtr lpBaseAddress, IntPtr lpBuffer, SizeT cbRead, out SizeT lpNumberOfBytesRead);
コード例 #11
0
 public static extern bool Compress(COMPRESSOR_HANDLE CompressorHandle, IntPtr UncompressedData, SizeT UncompressedDataSize, IntPtr CompressedBuffer, SizeT CompressedBufferSize, out SizeT CompressedDataSize);
コード例 #12
0
ファイル: EnclaveApi.cs プロジェクト: sasqwatch/Vanara
 public static extern SafeEnclaveHandle CreateEnclave(HPROCESS hProcess, IntPtr lpAddress, SizeT dwSize, SizeT dwInitialCommittment, EnclaveType flEnclaveType, in ENCLAVE_CREATE_INFO_SGX lpEnclaveInformation, uint dwInfoLength, out uint lpEnclaveError);