?? stdafx.h
字號:
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//
#if !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
#define AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include "resource.h"
#include <process.h> /* _beginthread, _endthread */
#include <wininet.h>
//必須要加上下面一行,以鏈接到wininet.dll庫
#pragma comment(lib,"wininet")
//兩個用戶定義消息,在WndProc要用到
#define WM_USER_CHECKFILES (WM_USER + 1)
#define WM_USER_GETFILES (WM_USER + 2)
//FTP下載的必要信息
//ftp://61.161.114.163/無間道3終極無間/IA-III1.rmvb
#define FTPSERVER TEXT ("ftp://61.161.114.163")
#define DIRECTORY TEXT ("ftp://61.161.114.163/無間道3終極無間/")
#define TEMPLATE TEXT ("*.*")
//用來存儲文件名和內容的一些自定結構體
typedef struct
{
TCHAR * szFilename ;
char * szContents ;
}
FILEINFO ;
typedef struct
{
int iNum ;
FILEINFO info[1] ;
}
FILELIST ;
//如下結構在輔助線程中要用到
typedef struct
{
BOOL bContinue;
HWND hwnd;
}
PARAMS;
// TODO: reference additional headers your program requires here
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_STDAFX_H__A9DB83DB_A9FD_11D0_BFD1_444553540000__INCLUDED_)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -