Home | History | Annotate | Download | only in stats_viewer

Lines Matching refs:IntPtr

26     public static readonly IntPtr INVALID_HANDLE_VALUE = new IntPtr(-1);

30 public static extern IntPtr CreateFile (
32 IntPtr lpSecurityAttributes, int dwCreationDisposition,
33 int dwFlagsAndAttributes, IntPtr hTemplateFile);
36 public static extern IntPtr MapViewOfFile (
37 IntPtr hFileMappingObject, int dwDesiredAccess, int dwFileOffsetHigh,
41 public static extern IntPtr OpenFileMapping (
45 public static extern bool UnmapViewOfFile (IntPtr lpBaseAddress);
48 public static extern bool CloseHandle(IntPtr handle);