Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Input / InputProcessorProfilesLoader.cs / 1 / InputProcessorProfilesLoader.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // // Description: Creates ITfThreadMgr instances, the root object of the Text // Services Framework. // // History: // 07/30/2003 : [....] - ported from dotnet tree. // //--------------------------------------------------------------------------- // PRESHARP: In order to avoid generating warnings about unkown message numbers and unknown pragmas. #pragma warning disable 1634, 1691 using System; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Security; using System.Threading; using Microsoft.Win32; using System.Diagnostics; using MS.Win32; namespace System.Windows.Input { //----------------------------------------------------- // // InputProcessorProfilesLoader class // //----------------------------------------------------- ////// Loads an instance of the Text Services Framework. /// internal static class InputProcessorProfilesLoader { //------------------------------------------------------ // // Constructors // //----------------------------------------------------- #region Constructors #endregion Constructors //------------------------------------------------------ // // Internal Properties // //------------------------------------------------------ #region Internal Properties ////// Loads an instance of the Text Services Framework. /// ////// May return null if no text services are available. /// ////// Critical - calls unmanaged code to load the input profiles, returns unmanaged object /// [SecurityCritical] internal static UnsafeNativeMethods.ITfInputProcessorProfiles Load() { UnsafeNativeMethods.ITfInputProcessorProfiles obj; Debug.Assert(Thread.CurrentThread.GetApartmentState() == ApartmentState.STA, "Load called on MTA thread!"); // // Bug#1212202 // // Presharp warn this though UnsafeNativeMethods.TF_CreateInputProcessorProfiles() does not have // SetLastError attribute. // We think this is a false alarm of Presharp. // #pragma warning suppress 6523 if (UnsafeNativeMethods.TF_CreateInputProcessorProfiles(out obj) == NativeMethods.S_OK) { return obj; } return null; } #endregion Internal Properties } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlDataSource.cs
- TypeBrowserDialog.cs
- RangeValueProviderWrapper.cs
- ObjectPersistData.cs
- BitVec.cs
- ResourceCodeDomSerializer.cs
- ProjectionPruner.cs
- TaskScheduler.cs
- AngleUtil.cs
- DateTimeHelper.cs
- XsdDateTime.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- RoleManagerEventArgs.cs
- StringStorage.cs
- XmlStringTable.cs
- ContentPosition.cs
- SqlDataSourceCustomCommandPanel.cs
- LineBreakRecord.cs
- ZipIOCentralDirectoryFileHeader.cs
- StatusBarPanel.cs
- ReleaseInstanceMode.cs
- XmlWrappingReader.cs
- ComplusEndpointConfigContainer.cs
- xsdvalidator.cs
- SafeNativeMethods.cs
- LinkedDataMemberFieldEditor.cs
- MaskedTextBoxDesignerActionList.cs
- X509Utils.cs
- SamlAction.cs
- QilInvoke.cs
- ContentElement.cs
- LabelAutomationPeer.cs
- CatalogZoneBase.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- PageTheme.cs
- ReflectionUtil.cs
- CapabilitiesRule.cs
- LocalizableAttribute.cs
- SafeNativeMethodsOther.cs
- KeyedHashAlgorithm.cs
- XmlToDatasetMap.cs
- Win32KeyboardDevice.cs
- XmlLoader.cs
- ComponentCache.cs
- DataGridSortCommandEventArgs.cs
- WindowsStartMenu.cs
- PerformanceCounterPermissionAttribute.cs
- PersonalizationProviderCollection.cs
- WebPartDescription.cs
- Collection.cs
- WindowCollection.cs
- XmlILIndex.cs
- RichTextBox.cs
- coordinator.cs
- ComponentChangedEvent.cs
- XmlSerializerNamespaces.cs
- IssuedTokenClientElement.cs
- FixedFindEngine.cs
- BaseValidator.cs
- CutCopyPasteHelper.cs
- TextFormatterContext.cs
- TagPrefixInfo.cs
- PKCS1MaskGenerationMethod.cs
- SqlProfileProvider.cs
- X509PeerCertificateElement.cs
- XmlAggregates.cs
- ConfigXmlAttribute.cs
- GradientBrush.cs
- baseaxisquery.cs
- TextBoxDesigner.cs
- ZoneLinkButton.cs
- HwndKeyboardInputProvider.cs
- ScrollPatternIdentifiers.cs
- BaseComponentEditor.cs
- InteropAutomationProvider.cs
- TileModeValidation.cs
- GcSettings.cs
- CodeComment.cs
- WsdlImporterElementCollection.cs
- GeneralTransform3DTo2D.cs
- WebPartDisplayModeCollection.cs
- UrlPath.cs
- ExternalException.cs
- AvTraceFormat.cs
- MissingMemberException.cs
- MDIWindowDialog.cs
- ImageCodecInfoPrivate.cs
- InkPresenterAutomationPeer.cs
- PolicyValidationException.cs
- HttpTransportElement.cs
- SortQueryOperator.cs
- FormViewCommandEventArgs.cs
- SettingsProperty.cs
- CompositeFontInfo.cs
- newitemfactory.cs
- BasicKeyConstraint.cs
- DbParameterHelper.cs
- Translator.cs
- Module.cs
- Rectangle.cs