本文整理汇总了C++中pfc::string_base::get_length方法的典型用法代码示例。如果您正苦于以下问题:C++ string_base::get_length方法的具体用法?C++ string_base::get_length怎么用?C++ string_base::get_length使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pfc::string_base
的用法示例。
在下文中一共展示了string_base::get_length方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: contextpath_from_guid
void contextpath_from_guid(const GUID & p_guid, const GUID & p_subcommand, pfc::string_base & p_out, bool b_short)
{
p_out.reset();
service_enum_t<contextmenu_item> e;
service_ptr_t<contextmenu_item> ptr;
unsigned p_service_item_index;
while (e.next(ptr))
{
unsigned p_service_item_count = ptr->get_num_items();
for (p_service_item_index = 0; p_service_item_index < p_service_item_count; p_service_item_index++)
{
if (p_guid == ptr->get_item_guid(p_service_item_index))
{
pfc::string8 name;
ptr->get_item_name(p_service_item_index, name);
if (!b_short)
{
ptr->get_item_default_path(p_service_item_index, p_out);
if (p_out.get_length() && p_out[p_out.get_length() - 1] != '/')
p_out.add_byte('/');
}
p_out.add_string(name);
if (p_subcommand != pfc::guid_null)
{
pfc::ptrholder_t<contextmenu_item_node_root> p_node(ptr->instantiate_item(p_service_item_index, metadb_handle_list(), contextmenu_item::caller_keyboard_shortcut_list));
if (p_node.is_valid())
if (__contextpath_from_guid_recur(p_node.get_ptr(), p_subcommand, p_out, b_short, true))
return;
}
}
}
}
}