-
Notifications
You must be signed in to change notification settings - Fork 16
/
CollectionTester.idl
27 lines (23 loc) · 1.33 KB
/
CollectionTester.idl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import "Windows.Foundation.idl";
namespace test_component
{
delegate void ObjectHandler(Object item);
runtimeclass CollectionTester
{
CollectionTester();
// static String InIterable(Windows.Foundation.Collections.IIterable<String> value);
// static String InIterablePair(Windows.Foundation.Collections.IIterable<Windows.Foundation.Collections.IKeyValuePair<String, String> > value);
static String InMap(Windows.Foundation.Collections.IMap<String, String> value);
static String InMapView(Windows.Foundation.Collections.IMapView<String, String> value);
static String InVector(Windows.Foundation.Collections.IVector<String> value);
static String InVectorView(Windows.Foundation.Collections.IVectorView<String> value);
static void GetObjectAt(Windows.Foundation.Collections.IVector<Object> value, UInt32 index, ObjectHandler callback);
static Windows.Foundation.Collections.IIterable<String> VectorAsIterable(Windows.Foundation.Collections.IVector<String> value);
Windows.Foundation.Collections.IVector<String> ReturnStoredStringVector();
Windows.Foundation.Collections.IMap<String, String> ReturnMapFromStringToString();
}
interface WithIterableGuids
{
Windows.Foundation.Collections.IVector<Guid> IDs();
}
}