1 2 #ifndef _ACCESSIBILITY_PROPS_SERVICER 3 #define _ACCESSIBILITY_PROPS_SERVICER 4 5 // Create accessibility property service 6 void CreateAccPropService(); 7 8 // Release accessibility property service 9 void ReleaseAccPropService(); 10 11 // Run when the UI is created. 12 void SetControlAccessibleName(HWND ctr_handle, LPCWSTR name); 13 14 // Annotate role property 15 void SetControlAccessibleRole(HWND ctr_handle, LONG role); 16 17 // Set accessible help string for a control 18 void SetAccessibleHelpString(HWND ctr_handle, LPCWSTR help_string); 19 20 // Set a lable to be a LiveRegion 21 void SetLiveRegion(HWND ctr_handle); 22 23 // Set accessible full description for a control 24 void SetAccessibleFullDescription(HWND ctr_handle, LPCWSTR string); 25 26 // Set accessible description string for a control 27 void SetAccessibleDescription(HWND ctr_handle, LPCWSTR help_string); 28 29 #endif