Dreamine.Threading.Windows 1.0.1
이 패키지는 다른 어셈블리에서 `DMContainer`를 partial class로 확장하지 않습니다. 등록은 별도의 Registration 클래스를 통해 제공합니다.
로딩중...
검색중...
일치하는것 없음
Kernel32NativeMethods.cs
이 파일의 문서화 페이지로 가기
1using System;
2using System.Runtime.InteropServices;
3
5
14internal static class Kernel32NativeMethods
15{
40 [DllImport("kernel32.dll")]
41 internal static extern IntPtr GetCurrentThread();
42
83 [DllImport("kernel32.dll", SetLastError = true)]
84 internal static extern UIntPtr SetThreadAffinityMask(
85 IntPtr threadHandle,
86 UIntPtr threadAffinityMask);
87}