基线 SVN r240

SVN-Revision: r240
This commit is contained in:
cyf
2025-02-06 06:46:06 +00:00
commit ab56a9bcf7
5317 changed files with 902274 additions and 0 deletions
@@ -0,0 +1,32 @@
namespace LSFileClient
{
using System;
using System.Runtime.InteropServices;
using System.Threading;
using System.Timers;
[StructLayout(LayoutKind.Sequential, Size=1)]
internal struct LSGlobleVariable
{
public static System.Timers.Timer timer;
public static Thread hThread;
public static bool bNeedExit;
public static object mutexObj;
public static uint userId;
public static IntPtr hWndMain;
public static FrmBase masterForm;
public static AutoResetEvent notifyEvent;
static LSGlobleVariable()
{
timer = null;
hThread = null;
bNeedExit = false;
mutexObj = 1;
userId = 0;
hWndMain = IntPtr.Zero;
masterForm = null;
notifyEvent = new AutoResetEvent(true);
}
}
}