![]() |
D++ (DPP)
C++ Discord API Bot Library
|
To create a basic bot using Visual Studio 2019 or Visual Studio 2022, follow the steps below to create a working skeleton project you can build upon.
If you prefer a video tutorial, you can watch the video below! Otherwise, scroll past and keep reading!
.cpp
file.MyBot.sln
file in the folder you just cloned: 1>MyBot.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class dpp::async<struct dpp::confirmation_callback_t> __cdecl dpp::interaction_create_t::co_reply(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (__imp_?co_reply@interaction_create_t@dpp@@QEBA?AV?$async@Uconfirmation_callback_t@dpp@@@2@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function "public: class dpp::task<void> __cdecl `int __cdecl main(void)'::`2'::<lambda_2>$_ResumeCoro$1::operator()(struct dpp::slashcommand_t const &)const " (??R<lambda_2>$_ResumeCoro$1@?1??main@@YAHXZ@QEBA?AV?$task@X@dpp@@AEBUslashcommand_t@3@@Z) 1>...\windows-bot-template-main\x64\Debug\MyBot.exe : fatal error LNK1120: 1 unresolved externals 1>Done building project "MyBot.vcxproj" -- FAILED.
dpp.dll
or opus.dll
) when starting your bot, then simply copy all DLLs from the bin directory of where you cloned the D++ repository to, into the same directory where your bot's executable is. You only need to do this once. There should be several of these DLL files: dpp.dll
, zlib.dll
, openssl.dll
and libcrypto.dll
(or similarly named SSL related files), libsodium.dll
and opus.dll
. Note the template project does this for you, so you should never encounter this issue.