从 C 中 LoadLibrary 加载的函数传回数据?
Passing back data from function loaded by LoadLibrary in C?
我正在尝试学习如何在 C
函数中正确使用 LoadLibrary
,但是我遇到了困难,而且没有很多好的教程可以遵循。我创建了一个简单的 C 程序,它使用 libCurl
库成功获取网站的 HTML 并将其打印到控制台。我现在正尝试使用 LoadLibrary
和 GetProcAddress
以及 libcurl.dll
.
重新实现相同的功能
如何从加载到内存中的函数传回数据?
下面发布的是使用 .lib 的函数,随后是尝试使用编译失败的 DLL 的函数。
这是我的工作程序:
#include "stdafx.h"
#include "TestWebService.h"
#include "curl/curl.h"
int main(int argc, char **argv)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if (curl) {
struct string s;
init_string(&s);
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
/* example.com is redirected, so we tell libcurl to follow redirection */
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writefunc);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &s);
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
/* Check for errors */
if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
/* always cleanup */
printf("%s\n", s.ptr);
free(s.ptr);
curl_easy_cleanup(curl);
}
return 0;
}
我尝试仅使用 LoadLibrary
(即不使用 libCurl.lib)来复制相同的功能。但是我收到以下错误消息并且无法确定原因。
1) a value of type "CURL" cannot be assigned to an entity of type "CURL *"
2) '=': cannot convert from 'CURL' to 'CURL *'
#include "stdafx.h"
#include "TestWebService.h"
#include "curl/curl.h"
typedef CURL (*CurlInitFunc)();
int main(int argc, char **argv)
{
HINSTANCE hLib = NULL;
hLib = LoadLibrary("libcurl.dll");
if (hLib != NULL)
{
CURL *curl;
CurlInitFunc _CurlInitFunc;
_CurlInitFunc = (CurlInitFunc)GetProcAddress(hLib, "curl_easy_init");
if (_CurlInitFunc)
{
curl = _CurlInitFunc();
}
}
return 0;
}
这一行:
typedef CURL (*CurlInitFunc)();
声明一个指向 returns 和 CURL
的函数的指针。但是curl_easy_init()
的原型是:
CURL *curl_easy_init();
这意味着它returns一个指向CURL
的指针,即CURL*
因此正确的声明是:
typedef CURL *(*CurlInitFunc)();
我正在尝试学习如何在 C
函数中正确使用 LoadLibrary
,但是我遇到了困难,而且没有很多好的教程可以遵循。我创建了一个简单的 C 程序,它使用 libCurl
库成功获取网站的 HTML 并将其打印到控制台。我现在正尝试使用 LoadLibrary
和 GetProcAddress
以及 libcurl.dll
.
如何从加载到内存中的函数传回数据?
下面发布的是使用 .lib 的函数,随后是尝试使用编译失败的 DLL 的函数。
这是我的工作程序:
#include "stdafx.h"
#include "TestWebService.h"
#include "curl/curl.h"
int main(int argc, char **argv)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if (curl) {
struct string s;
init_string(&s);
curl_easy_setopt(curl, CURLOPT_URL, "http://example.com");
/* example.com is redirected, so we tell libcurl to follow redirection */
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, writefunc);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &s);
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
/* Check for errors */
if (res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
/* always cleanup */
printf("%s\n", s.ptr);
free(s.ptr);
curl_easy_cleanup(curl);
}
return 0;
}
我尝试仅使用 LoadLibrary
(即不使用 libCurl.lib)来复制相同的功能。但是我收到以下错误消息并且无法确定原因。
1) a value of type "CURL" cannot be assigned to an entity of type "CURL *"
2) '=': cannot convert from 'CURL' to 'CURL *'
#include "stdafx.h"
#include "TestWebService.h"
#include "curl/curl.h"
typedef CURL (*CurlInitFunc)();
int main(int argc, char **argv)
{
HINSTANCE hLib = NULL;
hLib = LoadLibrary("libcurl.dll");
if (hLib != NULL)
{
CURL *curl;
CurlInitFunc _CurlInitFunc;
_CurlInitFunc = (CurlInitFunc)GetProcAddress(hLib, "curl_easy_init");
if (_CurlInitFunc)
{
curl = _CurlInitFunc();
}
}
return 0;
}
这一行:
typedef CURL (*CurlInitFunc)();
声明一个指向 returns 和 CURL
的函数的指针。但是curl_easy_init()
的原型是:
CURL *curl_easy_init();
这意味着它returns一个指向CURL
的指针,即CURL*
因此正确的声明是:
typedef CURL *(*CurlInitFunc)();