// Copyright (c) 2010-2014 SharpDX - Alexandre Mutel // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. using System; using System.Reflection; namespace SharpDX { /// /// The implementation of this class is filled by InteropBuilder post-building-event. /// internal class Interop { /// /// Provides a fixed statement working with generics. /// /// /// The data. /// A fixed pointer to the referenced structure /// /// This is the only function in this class that is inlined in order to inline the fixed statement correctly. /// public static unsafe void* Fixed(ref T data) { throw new NotImplementedException(); } public static unsafe void* Fixed(T[] data) { throw new NotImplementedException(); } public static unsafe void* Cast(ref T data) where T : struct { throw new NotImplementedException(); } public static unsafe void* CastOut(out T data) where T : struct { throw new NotImplementedException(); } public static TCAST[] CastArray(T[] arrayData) where T : struct where TCAST : struct { throw new NotImplementedException(); } public static unsafe void memcpy(void* pDest, void* pSrc, int count) { throw new NotImplementedException(); } public static unsafe void memset(void* pDest, byte value, int count) { throw new NotImplementedException(); } public static unsafe void* Read(void* pSrc, ref T data) where T : struct { throw new NotImplementedException(); } public static unsafe T ReadInline(void* pSrc) where T : struct { throw new NotImplementedException(); } public static unsafe void WriteInline(void* pDest, ref T data) where T : struct { throw new NotImplementedException(); } public static unsafe void CopyInline(ref T data, void* pSrc) where T : struct { throw new NotImplementedException(); } public static unsafe void CopyInline(void* pDest, ref T srcData) where T : struct { throw new NotImplementedException(); } public static unsafe void CopyInlineOut(out T data, void* pSrc) where T : struct { throw new NotImplementedException(); } public static unsafe void* ReadOut(void* pSrc, out T data) where T : struct { throw new NotImplementedException(); } public static unsafe void* Read(void* pSrc, T[] data, int offset, int count) where T : struct { throw new NotImplementedException(); } public static unsafe void* Read2D(void* pSrc, T[,] data, int offset, int count) where T : struct { throw new NotImplementedException(); } public static int SizeOf() { throw new NotImplementedException(); } public static unsafe void* Write(void* pDest, ref T data) where T : struct { throw new NotImplementedException(); } public static unsafe void* Write(void* pDest, T[] data, int offset, int count) where T : struct { throw new NotImplementedException(); } public static unsafe void* Write2D(void* pDest, T[,] data, int offset, int count) where T : struct { throw new NotImplementedException(); } [Tag("SharpDX.ModuleInit")] public static void ModuleInit() { // Console.WriteLine("SharpDX Initialized"); } } }