ZHJA_HJGL/HJGL_ZH/BLL/RefComm.cs

17 lines
410 B
C#
Raw Normal View History

2024-05-08 17:17:11 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace BLL
{
public class RefComm
{
[DllImport("Matchdll.dll",
EntryPoint = "process",
CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)]
public static extern int process(string a, string b);
}
}