自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Acheld的博客

the A is silent

  • 博客(3)
  • 资源 (2)
  • 收藏
  • 关注

翻译 winuser.h

#ifndef _WINUSER_H #define _WINUSER_H #if __GNUC__ >= 3 #pragma GCC system_header #endif #ifdef __cplusplus extern "C" { #endif #ifndef WINUSERAPI #ifdef __W32API_USE_DLLIMPORT__ #define WINUSERAPI

2016-11-28 23:36:30 5996

原创 error LNK2019: 无法解析的外部符号

error LNK2019,这类问题一般是因为链接lib库文件时的问题。 所以只要正确的进行lib库文件的链接,这类问题就会得到解决。 lib库文件包含了DLL中函数的想关信息,因此我们只需要在项目添加对这些LIB的依赖既可; 1. 在VS2008中点击项目-》右键-》属性-》配置属性-》链接器-》输入-》附加依赖项:将相关的lib文件加入到

2016-11-28 23:28:32 4838 1

翻译 SetWindowLong

 This documentation is archived and is not being maintained. SetWindowLong function Changes an attribute of the specified window. The function also sets the 32-bit (long) value at the spe

2016-11-28 22:44:41 950

FtpLib upload class

char usrpasswd[256]; sprintf(usrpasswd, "%s:%s", user, password); FILE *file = fopen(localpath, "rb"); if (file == NULL) { perror(NULL); return FTP_LOCALFILE_NOTACCESS; } CURLcode resCode = FtpUpload(remotepath, usrpasswd,file); if (resCode == CURLE_OK){ return FTP_OK; } else { char errorMsg[1023]; sprintf(errorMsg, "%s/n", curl_easy_strerror(resCode)); if (resCode == CURLE_LOGIN_DENIED){ return FTP_LOGIN_DENIED; } else if (resCode == CURLE_COULDNT_CONNECT){ return FTP_COULDNT_CONNECT; } return FTP_FAIL; }

2016-08-22

inttypes.h

inttypes.h

2016-03-26

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除