Mobile SDK for Windows Apps2.0
Transforming Windows apps into Mobile apps
|
00001 00011 #pragma once 00012 00013 #include <cmp.h> 00014 00015 00016 [ 00017 object, 00018 oleautomation, 00019 pointer_default(unique), 00020 nonextensible, 00021 uuid("5899C781-7813-4641-8CAA-80FF5BCDCD1B"), 00022 helpstring("Citrix Mobility Picker Interface") 00023 ] 00024 __interface IPicker: IUnknown 00025 { 00026 STDMETHODIMP HidePicker([in]CMP_UNIQUE_ID controlId, [out, retval]CMPRESULT* result); 00027 STDMETHODIMP ShowPicker([in]CMP_UNIQUE_ID controlId, [in]CMP_DISPLAY_RECT* rect, [in]INT32 selectedIndex, 00028 [in]BSTR bstrList, [in]BSTR bstrTitle, 00029 [out, retval]CMPRESULT* result); 00030 STDMETHODIMP GetPickerState([in]CMP_UNIQUE_ID controlId, [out]PINT16 pickerState, [out, retval]CMPRESULT* result); 00031 }; 00032