Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Shared / MS / Internal / Ink / Native.cs / 1 / Native.cs
using System; using System.Security; using System.Runtime.InteropServices; namespace MS.Internal.Ink { internal static class Native { ////// Initialize the constants /// ////// Critical: Critical as this code invokes Marshal.SizeOf which uses LinkDemand for UnmanagedCode permission. /// TreatAsSafe: The method doesn't take any user inputs. It only pre-computes the size of our internal types. /// [SecurityCritical, SecurityTreatAsSafe] static Native() { // NOTICE-2005/10/14-WAYNEZEN, // Make sure those lengths are indepentent from the 32bit or 64bit platform. Otherwise it could // break the ISF format. SizeOfInt = (uint)Marshal.SizeOf(typeof(int)); SizeOfUInt = (uint)Marshal.SizeOf(typeof(uint)); SizeOfUShort = (uint)Marshal.SizeOf(typeof(ushort)); SizeOfByte = (uint)Marshal.SizeOf(typeof(byte)); SizeOfFloat = (uint)Marshal.SizeOf(typeof(float)); SizeOfDouble = (uint)Marshal.SizeOf(typeof(double)); SizeOfGuid = (uint)Marshal.SizeOf(typeof(Guid)); SizeOfDecimal = (uint)Marshal.SizeOf(typeof(decimal)); } internal static readonly uint SizeOfInt; // Size of an int internal static readonly uint SizeOfUInt; // Size of an unsigned int internal static readonly uint SizeOfUShort; // Size of an unsigned short internal static readonly uint SizeOfByte; // Size of a byte internal static readonly uint SizeOfFloat; // Size of a float internal static readonly uint SizeOfDouble; // Size of a double internal static readonly uint SizeOfGuid; // Size of a GUID internal static readonly uint SizeOfDecimal; // Size of a VB-style Decimal internal const int BitsPerByte = 8; // number of bits in a byte internal const int BitsPerShort = 16; // number of bits in one short - 2 bytes internal const int BitsPerInt = 32; // number of bits in one integer - 4 bytes internal const int BitsPerLong = 64; // number of bits in one long - 8 bytes // since casting from floats have mantisaa components, // casts from float to int are not constrained by // Int32.MaxValue, but by the maximum float value // whose mantissa component is still within range // of an integer. Anything larger will cause an overflow. internal const int MaxFloatToIntValue = 2147483584 - 1; // 2.14748e+009 } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Security; using System.Runtime.InteropServices; namespace MS.Internal.Ink { internal static class Native { ////// Initialize the constants /// ////// Critical: Critical as this code invokes Marshal.SizeOf which uses LinkDemand for UnmanagedCode permission. /// TreatAsSafe: The method doesn't take any user inputs. It only pre-computes the size of our internal types. /// [SecurityCritical, SecurityTreatAsSafe] static Native() { // NOTICE-2005/10/14-WAYNEZEN, // Make sure those lengths are indepentent from the 32bit or 64bit platform. Otherwise it could // break the ISF format. SizeOfInt = (uint)Marshal.SizeOf(typeof(int)); SizeOfUInt = (uint)Marshal.SizeOf(typeof(uint)); SizeOfUShort = (uint)Marshal.SizeOf(typeof(ushort)); SizeOfByte = (uint)Marshal.SizeOf(typeof(byte)); SizeOfFloat = (uint)Marshal.SizeOf(typeof(float)); SizeOfDouble = (uint)Marshal.SizeOf(typeof(double)); SizeOfGuid = (uint)Marshal.SizeOf(typeof(Guid)); SizeOfDecimal = (uint)Marshal.SizeOf(typeof(decimal)); } internal static readonly uint SizeOfInt; // Size of an int internal static readonly uint SizeOfUInt; // Size of an unsigned int internal static readonly uint SizeOfUShort; // Size of an unsigned short internal static readonly uint SizeOfByte; // Size of a byte internal static readonly uint SizeOfFloat; // Size of a float internal static readonly uint SizeOfDouble; // Size of a double internal static readonly uint SizeOfGuid; // Size of a GUID internal static readonly uint SizeOfDecimal; // Size of a VB-style Decimal internal const int BitsPerByte = 8; // number of bits in a byte internal const int BitsPerShort = 16; // number of bits in one short - 2 bytes internal const int BitsPerInt = 32; // number of bits in one integer - 4 bytes internal const int BitsPerLong = 64; // number of bits in one long - 8 bytes // since casting from floats have mantisaa components, // casts from float to int are not constrained by // Int32.MaxValue, but by the maximum float value // whose mantissa component is still within range // of an integer. Anything larger will cause an overflow. internal const int MaxFloatToIntValue = 2147483584 - 1; // 2.14748e+009 } } // 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
- ValueSerializerAttribute.cs
- DocumentPageTextView.cs
- HelpEvent.cs
- TabControl.cs
- BamlLocalizabilityResolver.cs
- EditingCommands.cs
- NavigatingCancelEventArgs.cs
- SqlServer2KCompatibilityAnnotation.cs
- ContextQuery.cs
- XmlTextReaderImpl.cs
- XmlSchemaFacet.cs
- ObjectCloneHelper.cs
- OutputCacheProfileCollection.cs
- WebPartRestoreVerb.cs
- ClosableStream.cs
- LinqTreeNodeEvaluator.cs
- Transform3D.cs
- XPathMultyIterator.cs
- DataBoundLiteralControl.cs
- AlternateViewCollection.cs
- StrokeNodeOperations.cs
- KeyNotFoundException.cs
- DesignSurface.cs
- RelationshipWrapper.cs
- Point3DAnimationUsingKeyFrames.cs
- SelectionService.cs
- ExpressionList.cs
- LayoutExceptionEventArgs.cs
- ViewKeyConstraint.cs
- DependencyPropertyDescriptor.cs
- DataObjectMethodAttribute.cs
- RangeBaseAutomationPeer.cs
- ResolveMatchesMessage11.cs
- DropSource.cs
- DataGridCellItemAutomationPeer.cs
- AjaxFrameworkAssemblyAttribute.cs
- BitmapEffectState.cs
- PropertyBuilder.cs
- TypeElement.cs
- ExpressionList.cs
- DataGridTextBoxColumn.cs
- DataGridViewEditingControlShowingEventArgs.cs
- InfoCard.cs
- SqlProcedureAttribute.cs
- AddInActivator.cs
- Invariant.cs
- DurableMessageDispatchInspector.cs
- Confirm.cs
- _AutoWebProxyScriptHelper.cs
- Keywords.cs
- TextContainerChangeEventArgs.cs
- CaseInsensitiveComparer.cs
- CodeCommentStatementCollection.cs
- RadioButtonDesigner.cs
- SmtpNegotiateAuthenticationModule.cs
- PointAnimation.cs
- DesignerSerializerAttribute.cs
- ButtonField.cs
- IsolatedStorage.cs
- ReflectEventDescriptor.cs
- TextDecorationLocationValidation.cs
- DetailsViewModeEventArgs.cs
- SqlCacheDependencyDatabaseCollection.cs
- Label.cs
- FocusTracker.cs
- SEHException.cs
- TypeSemantics.cs
- WindowsFont.cs
- AbstractSvcMapFileLoader.cs
- Html32TextWriter.cs
- XmlSchemaAnyAttribute.cs
- SecurityDescriptor.cs
- InputBinder.cs
- String.cs
- ThemeableAttribute.cs
- OlePropertyStructs.cs
- Polyline.cs
- PopOutPanel.cs
- WorkflowServiceInstance.cs
- ControlCachePolicy.cs
- SerializationStore.cs
- XmlElementCollection.cs
- VariableBinder.cs
- TextViewSelectionProcessor.cs
- ProfileGroupSettingsCollection.cs
- AppDomainUnloadedException.cs
- ObjectViewListener.cs
- _ListenerAsyncResult.cs
- BrowserCapabilitiesFactory.cs
- DateTimeValueSerializer.cs
- CapabilitiesSection.cs
- StringUtil.cs
- WebPartMinimizeVerb.cs
- LineUtil.cs
- ActiveXHost.cs
- PrivilegedConfigurationManager.cs
- WebException.cs
- RowBinding.cs
- TextWriter.cs
- UIAgentRequest.cs