49 lines
2.6 KiB
C#
49 lines
2.6 KiB
C#
//
|
|
// This file manually written from cef/include/internal/cef_string_multimap.h
|
|
//
|
|
namespace Cef3.Interop
|
|
{
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
|
|
internal static unsafe partial class libcef
|
|
{
|
|
// Allocate a new string multimap.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_alloc", CallingConvention = CEF_CALL)]
|
|
public static extern cef_string_multimap* string_multimap_alloc();
|
|
|
|
// Return the number of elements in the string multimap.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_size", CallingConvention = CEF_CALL)]
|
|
public static extern int string_multimap_size(cef_string_multimap* map);
|
|
|
|
// Return the number of values with the specified key.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_find_count", CallingConvention = CEF_CALL)]
|
|
public static extern int string_multimap_find_count(cef_string_multimap* map, cef_string_t* key);
|
|
|
|
// Return the value_index-th value with the specified key.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_enumerate", CallingConvention = CEF_CALL)]
|
|
public static extern int string_multimap_enumerate(cef_string_multimap* map, cef_string_t* key, int value_index, cef_string_t* value);
|
|
|
|
// Return the key at the specified zero-based string multimap index.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_key", CallingConvention = CEF_CALL)]
|
|
public static extern int string_multimap_key(cef_string_multimap* map, int index, cef_string_t* key);
|
|
|
|
// Return the value at the specified zero-based string multimap index.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_value", CallingConvention = CEF_CALL)]
|
|
public static extern int string_multimap_value(cef_string_multimap* map, int index, cef_string_t* value);
|
|
|
|
// Append a new key/value pair at the end of the string multimap.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_append", CallingConvention = CEF_CALL)]
|
|
public static extern int string_multimap_append(cef_string_multimap* map, cef_string_t* key, cef_string_t* value);
|
|
|
|
// Clear the string multimap.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_clear", CallingConvention = CEF_CALL)]
|
|
public static extern void string_multimap_clear(cef_string_multimap* map);
|
|
|
|
// Free the string multimap.
|
|
[DllImport(DllName, EntryPoint = "cef_string_multimap_free", CallingConvention = CEF_CALL)]
|
|
public static extern void string_multimap_free(cef_string_multimap* map);
|
|
}
|
|
}
|