Mobile SDK for Windows Apps2.0
Transforming Windows apps into Mobile apps
|
00001 00013 #pragma once 00014 00015 #include <cmp.h> 00016 00017 [ 00018 object, 00019 oleautomation, 00020 pointer_default(unique), 00021 nonextensible, 00022 uuid("2D00CBE3-A663-4FCA-8392-DE7D62DD1762"), 00023 helpstring("Citrix Mobility Keyboard Interface") 00024 ] 00025 __interface IKeyboard: IUnknown 00026 { 00027 STDMETHODIMP HideKeyboard([out,retval]CMPRESULT* result); 00028 STDMETHODIMP ShowKeyboard([in]CMP_KEYBOARD_STATE *kybdState, [out,retval]CMPRESULT* result); 00029 STDMETHODIMP GetKeyboardState([out]CMP_KEYBOARD_STATE *kybdState, [out, retval]CMPRESULT* result); 00030 }; 00031 00032