📄 urlencode.h
字号:
// URLEncode.h: interface for the CURLEncode class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_URLENCODE_H__EA4E8C6F_CF50_494B_9456_BA45DBC40A90__INCLUDED_)
#define AFX_URLENCODE_H__EA4E8C6F_CF50_494B_9456_BA45DBC40A90__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#define UNDEF 0xFFFD
class CURLEncode
{
private:
CURLEncode() {};
virtual ~CURLEncode(){};
static int UTF8Encode( const char* source, char* result, int length );
static int getUTF8Presentation( const char* source, char* result, int length );
public:
static CString URLEncode( CString strSource );
};
#endif // !defined(AFX_URLENCODE_H__EA4E8C6F_CF50_494B_9456_BA45DBC40A90__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -