@@ -6621,6 +6621,22 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
6621
6621
<arg nr="1" direction="in"/>
6622
6622
<arg nr="2" direction="out" default=""/>
6623
6623
</function>
6624
+ <!-- https://en.cppreference.com/w/cpp/filesystem/create_symlink -->
6625
+ <!-- (1) (since C++17) void create_symlink(const std::filesystem::path& target, const std::filesystem::path& link ); -->
6626
+ <!-- (2) (since C++17) void create_symlink(const std::filesystem::path& target, const std::filesystem::path& link, std::error_code& ec ) noexcept; -->
6627
+ <!-- (1) (since C++17) void create_directory_symlink(const std::filesystem::path& target, const std::filesystem::path& link ); -->
6628
+ <!-- (2) (since C++17) void create_directory_symlink(const std::filesystem::path& target, const std::filesystem::path& link, std::error_code& ec ) noexcept; -->
6629
+ <!-- https://en.cppreference.com/w/cpp/filesystem/create_hard_link -->
6630
+ <!-- (1) (since C++17) void create_hard_link(const std::filesystem::path& target, const std::filesystem::path& link ); -->
6631
+ <!-- (2) (since C++17) void create_hard_link(const std::filesystem::path& target, const std::filesystem::path& link, std::error_code& ec ) noexcept; -->
6632
+ <function name="std::filesystem::create_symlink,std::filesystem::create_directory_symlink,std::filesystem::create_hard_link">
6633
+ <returnValue type="void"/>
6634
+ <noreturn>false</noreturn>
6635
+ <leak-ignore/>
6636
+ <arg nr="1" direction="in"/>
6637
+ <arg nr="2" direction="in"/>
6638
+ <arg nr="3" direction="out" default=""/>
6639
+ </function>
6624
6640
<!-- std::string std::ostringstream::str() const; -->
6625
6641
<!-- std::string std::stringstream::str() const; -->
6626
6642
<!-- std::string std::basic_stringstream::str() const; -->
0 commit comments