Mobile SDK for Windows Apps2.0
Transforming Windows apps into Mobile apps
|
00001 00011 #pragma once 00012 00013 #include <cmp.h> 00014 00015 [ 00016 object, 00017 oleautomation, 00018 nonextensible, 00019 pointer_default(unique), 00020 uuid("FF9EA709-EC0B-4704-AB68-B573955FB680"), 00021 helpstring("Citrix Mobility Button Interface") 00022 ] 00023 __interface IButton: IUnknown 00024 { 00025 STDMETHODIMP GetButtonTarget([in]CMP_BUTTON_ID button, [out]CMP_BUTTON_TARGET* target, [out, retval]CMPRESULT* result); 00026 STDMETHODIMP SetButtonTarget([in]CMP_BUTTON_ID button, [in]CMP_BUTTON_TARGET target, [out, retval]CMPRESULT* result); 00027 }; 00028 00029