e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
15 lines
316 B
C#
15 lines
316 B
C#
|
|
using System;
|
|
using System.IO;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
using Microsoft.Win32.SafeHandles;
|
|
|
|
namespace Microsoft.Win32
|
|
{
|
|
static class NativeMethods
|
|
{
|
|
[MethodImplAttribute (MethodImplOptions.InternalCall)]
|
|
public static extern int GetCurrentProcessId ();
|
|
}
|
|
} |