我正在尝试开发Telegram Client。 我git克隆了tdlib并按照说明进行操作。
现在,我制作了一个test.cpp文件来测试this page中的示例代码
但是该示例代码需要this头文件。
我从构建此项目的地方找到了 td / telegram / tdjson_export.h 。 ./ build / td / telegram / tdjson_export.h
但是编译时仍然有错误。
In file included from td/telegram/td_json_client.h:50:0,
from a.cpp:1:
td/telegram/td/telegram/tdjson_export.h:15:39: error: expected constructor, destructor, or type conversion before ‘(’ token
# define TDJSON_EXPORT __declspec(dllimport)
...(omitted)
我认为这不是人们通常的正确做法。 因为头文件分散在各处。 我该怎么办?