Files
newfolder/ChamChat/Models/FlowControl.cs
Wesley Hofman 2f1f4199ad first commit
2025-09-18 14:23:18 +02:00

16 lines
280 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ChamChat.Models
{
public enum FlowControl
{
FT_FLOW_NONE = 0,
FT_FLOW_RTS_CTS = 256,
FT_FLOW_DTR_DSR = 512,
FT_FLOW_XON_XOFF = 1024
}
}