일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 |
- Blocks
- SetTitleMatchMode
- ControlSend
- Threads
- DetectHiddenWindows
- 함수
- StringGetPos
- SetEnv
- 식
- if(식)
- if
- EnvDiv
- Menu
- 식의 설명
- EnvAdd
- EnvMult
- SetKeyDelay
- EnvSet
- SetControlDelay
- ControlGetText
- SetMouseDelay
- EnvSub
- 배열
- autohotkey
- API
- MouseClick
- IfInString
- IfWinExist
- Var:=식
- IF (식)
- Today
- Total
목록2007/11/25 (2)
ㄴrㅎnㅂrㄹrㄱi
AHK Chat (Another Method) AHK #Persistent start: Gui, Add, Edit, x76 y10 w100 h20 vusername , Gui, Add, Text, x6 y10 w70 h20 , User Name: Gui, Add, Button, x43 y40 w100 h30 glogin +default, Login Gui, Show, h83 w188, Login Return login: gui submit gui destroy URLDownloadToFile, http://jon2s.com/ahkchat/chat.php?event=login&loggedusername=%username%, %A_Temp%\login.txt FileReadLine, loginresult, ..
#include #include int main() { WSADATA wsaData; SOCKET sockSvr; SOCKET sockSS; int nlen; struct sockaddr_in addrSockSvr; struct sockaddr_in addrSockclt; long nRet; BOOL bValid = 1; char szBuf[2048]; char szInBuf[2048]; // 윈속 초기화 if(WSAStartup(MAKEWORD(2, 0), &wsaData) != 0) { return 1; } // 소켓 만들기 sockSvr = socket(AF_INET, SOCK_STREAM, 0); if(sockSvr == INVALID_SOCKET) { printf("Socket Error No ..