C3031
2026-01-30 22ff831583da8c6f1c015c1e294f0bc1ef70ac85
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
 
namespace LB_SmartVisionCommon
{
    public static class CommonVar
    {
        public const uint WM_RENDER_VTK = 50276;
        // 声明 Windows API 函数
        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        public static extern uint RegisterWindowMessage(string lpString);
 
    }
}