shared memory

This commit is contained in:
Namhyeon Go 2023-12-29 15:09:31 +09:00
parent fcd53969f1
commit 29a40ab83d
3 changed files with 1 additions and 2 deletions

Binary file not shown.

View File

@ -30,7 +30,7 @@ namespace WelsonJS
private IntPtr hFile;
private IntPtr hFileMappingObject;
private string lpName;
private static Dictionary<string, NamedSharedMemory> memDict;
private static Dictionary<string, NamedSharedMemory> memDict = new Dictionary<string, NamedSharedMemory>();
[Flags]
public enum FileProtection : uint

View File

@ -29,7 +29,6 @@
*/
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Windows.Forms;