1
0
mirror of synced 2026-04-21 07:48:38 +08:00
This commit is contained in:
yitter
2021-04-03 18:22:19 +08:00
parent 9c34748c52
commit abea1071ee
2 changed files with 7 additions and 4 deletions

View File

@@ -55,8 +55,8 @@ namespace Yitter.OrgSystem.TestA
while (true)
{
RunSingle();
//CallDll();
//RunSingle();
CallDll();
//Go(options);
Thread.Sleep(1000); // 每隔1秒执行一次Go
}
@@ -65,7 +65,10 @@ namespace Yitter.OrgSystem.TestA
//[DllImport("yitidgenc.dll", CallingConvention = CallingConvention.StdCall)]
//public static extern long NextId();
[DllImport("yitidgengo.dll", CallingConvention = CallingConvention.StdCall)]
[DllImport("yitidgengo.dll", EntryPoint = "NextId", CallingConvention = CallingConvention.StdCall)]
public static extern long NextId2();
[DllImport("yitidgengo.so", EntryPoint = "NextId", CallingConvention = CallingConvention.StdCall)]
public static extern long NextId();
[DllImport("yitidgen.dll", CallingConvention = CallingConvention.StdCall)]
@@ -78,7 +81,6 @@ namespace Yitter.OrgSystem.TestA
{
try
{
int i = 0;
long id = 0;
DateTime start = DateTime.Now;