?? types.bas
字號(hào):
Attribute VB_Name = "types"
'this is the data-type for each client.
'it keeps a record of everybody connected
'and also stores data on what socket they
'are using, customize for your needs.
Type client_type
'socket they are using, 0 if not used
socket As Integer
'time they connected
connected_at As String
'remember when his last command was
idle_since As String
End Type
'this creates an array for each possible client
Public client(server_max_clients) As client_type
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -