Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / System / Design / SafeNativeMethods.cs / 2 / SafeNativeMethods.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Design { using System.Runtime.InteropServices; using System; using System.Security.Permissions; using System.Collections; using System.IO; using System.Text; [ System.Security.SuppressUnmanagedCodeSecurityAttribute() ] internal static class SafeNativeMethods { [DllImport(ExternDll.Gdi32, SetLastError=true, ExactSpelling=true, EntryPoint="DeleteObject", CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern bool DeleteObject(HandleRef hObject); [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern int GetMessagePos(); [DllImport(ExternDll.User32, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern int RegisterWindowMessage(string msg); [DllImport(ExternDll.Gdi32, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern bool GetTextMetrics(HandleRef hdc, NativeMethods.TEXTMETRIC tm); [DllImport(ExternDll.Gdi32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern bool BitBlt(IntPtr hDC,int x,int y,int nWidth,int nHeight,IntPtr hSrcDC,int xSrc,int ySrc,int dwRop); [DllImport(ExternDll.Gdi32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern IntPtr CreateSolidBrush(int crColor); [DllImport(ExternDll.User32, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern int GetWindowTextLength(HandleRef hWnd); [DllImport(ExternDll.Kernel32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern int GetTickCount(); [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern bool RedrawWindow(IntPtr hwnd, NativeMethods.COMRECT rcUpdate, IntPtr hrgnUpdate, int flags); [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, int flags); [DllImport(ExternDll.User32, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern int DrawText(HandleRef hDC, string lpszString, int nCount, ref NativeMethods.RECT lpRect, int nFormat); [DllImport(ExternDll.Gdi32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern IntPtr SelectObject(HandleRef hDC, HandleRef hObject); [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public extern static bool IsChild(HandleRef parent, HandleRef child); // this is a wrapper that comctl exposes for the NT function since it doesn't exist natively on 95. [DllImport(ExternDll.Comctl32, ExactSpelling=true)] private static extern bool _TrackMouseEvent(NativeMethods.TRACKMOUSEEVENT tme); public static bool TrackMouseEvent(NativeMethods.TRACKMOUSEEVENT tme) { // only on NT - not on 95 - comctl32 has a wrapper for 95 and NT. return _TrackMouseEvent(tme); } [DllImport(ExternDll.Kernel32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern int GetCurrentProcessId(); [DllImport(ExternDll.Gdi32, ExactSpelling=true, CharSet=CharSet.Auto)] public static extern bool RoundRect(HandleRef hDC, int left, int top, int right, int bottom, int width, int height); [DllImport(ExternDll.Gdi32, ExactSpelling=true, CharSet=CharSet.Auto)] public static extern bool Rectangle(HandleRef hdc, int left, int top, int right, int bottom); [DllImport(ExternDll.Gdi32, ExactSpelling=true, EntryPoint="CreatePen", CharSet=System.Runtime.InteropServices.CharSet.Auto)] private static extern IntPtr IntCreatePen(int nStyle, int nWidth, int crColor); public static IntPtr CreatePen(int nStyle, int nWidth, int crColor) { return System.Internal.HandleCollector.Add(IntCreatePen(nStyle, nWidth, crColor), NativeMethods.CommonHandles.GDI); } //--------Added because of VSWhidbey 581670----------------------------------------------------- // Investigate removing this if the duplicate code in OleDragDropHandler.cs is removed [DllImport(ExternDll.Gdi32, SetLastError = true, ExactSpelling = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)] public static extern int SetROP2(HandleRef hDC, int nDrawMode); [DllImport(ExternDll.Gdi32, SetLastError = true, ExactSpelling = true, CharSet = System.Runtime.InteropServices.CharSet.Auto)] public static extern int SetBkColor(HandleRef hDC, int clr); //--------Added because of VSWhidbey 581670----------------------------------------------------- //[....] Nov 1, 2004: Removed /* [DllImport(ExternDll.Gdi32, ExactSpelling=true, CharSet=CharSet.Auto)] public static extern bool Ellipse(HandleRef hDC, int left, int top, int right, int bottom); [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=CharSet.Auto)] public static extern IntPtr GetSysColorBrush(int nIndex); [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern bool MessageBeep(int type); [DllImport(ExternDll.User32, ExactSpelling=true, CharSet=System.Runtime.InteropServices.CharSet.Auto)] public static extern bool RedrawWindow(IntPtr hwnd, ref NativeMethods.RECT rcUpdate, IntPtr hrgnUpdate, int flags); */ } } // 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
- ClientTarget.cs
- UrlUtility.cs
- MimeTypePropertyAttribute.cs
- XappLauncher.cs
- PeerNeighborManager.cs
- PersonalizationStateQuery.cs
- ConditionalAttribute.cs
- Image.cs
- SkewTransform.cs
- RecipientIdentity.cs
- WebPartCollection.cs
- COM2PropertyBuilderUITypeEditor.cs
- IHttpResponseInternal.cs
- PropertyGeneratedEventArgs.cs
- BooleanKeyFrameCollection.cs
- EntityCollection.cs
- CreateUserWizard.cs
- TableDetailsRow.cs
- FormatStringEditor.cs
- SecurityUtils.cs
- XXXInfos.cs
- AsyncResult.cs
- QuadraticBezierSegment.cs
- _SslState.cs
- DEREncoding.cs
- SingleSelectRootGridEntry.cs
- SecurityValidationBehavior.cs
- EncoderNLS.cs
- Win32Exception.cs
- Int16AnimationBase.cs
- HttpCapabilitiesEvaluator.cs
- ConnectionPool.cs
- ListViewDataItem.cs
- OleDbWrapper.cs
- TextDecorationUnitValidation.cs
- DSASignatureFormatter.cs
- SizeChangedEventArgs.cs
- HandleExceptionArgs.cs
- IisTraceWebEventProvider.cs
- EventPrivateKey.cs
- CssTextWriter.cs
- ToolStripDropTargetManager.cs
- DoubleAnimationUsingKeyFrames.cs
- XmlSchemaException.cs
- TableCellsCollectionEditor.cs
- GridViewColumnHeaderAutomationPeer.cs
- XPathEmptyIterator.cs
- XMLUtil.cs
- isolationinterop.cs
- Evidence.cs
- AssociationSet.cs
- DataControlFieldCollection.cs
- ScrollChrome.cs
- IIS7WorkerRequest.cs
- DynamicScriptObject.cs
- WebUtility.cs
- handlecollector.cs
- Metadata.cs
- ContractUtils.cs
- WizardPanel.cs
- Splitter.cs
- ValidationPropertyAttribute.cs
- SerialErrors.cs
- LifetimeMonitor.cs
- FileLoadException.cs
- CustomErrorCollection.cs
- ListControlDesigner.cs
- WebRequest.cs
- SqlProcedureAttribute.cs
- ExpressionReplacer.cs
- NamedPipeTransportBindingElement.cs
- DbMetaDataCollectionNames.cs
- TrackingAnnotationCollection.cs
- DependencyObjectPropertyDescriptor.cs
- NavigationProgressEventArgs.cs
- SurrogateEncoder.cs
- ImageCollectionEditor.cs
- RedBlackList.cs
- Subtree.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- SqlConnectionStringBuilder.cs
- LabelTarget.cs
- _SingleItemRequestCache.cs
- SqlFormatter.cs
- filewebresponse.cs
- TextureBrush.cs
- ErrorRuntimeConfig.cs
- CustomAttributeFormatException.cs
- CodeDirectiveCollection.cs
- FilteredReadOnlyMetadataCollection.cs
- ContentOperations.cs
- PageBuildProvider.cs
- ErrorHandlingAcceptor.cs
- PkcsMisc.cs
- XamlFigureLengthSerializer.cs
- ErrorFormatter.cs
- ToolStripRenderer.cs
- SelectionProviderWrapper.cs
- AccessKeyManager.cs
- ImportContext.cs