// // vcclr.h - helper code for using the managed extensions to C++ // // Copyright (C) 2000-2001 Microsoft Corporation // All rights reserved. // #if _MSC_VER > 1000 #pragma once #endif #if !defined(_INC_VCCLR) #define _INC_VCCLR #using #include // // get an interior gc pointer to the first character contained in a System::String object // inline const System::Char * PtrToStringChars(const System::String *s) { const System::Byte *bp = reinterpret_cast(s); if( bp != 0 ) { unsigned offset = System::Runtime::CompilerServices::RuntimeHelpers::OffsetToStringData; bp += offset; } return reinterpret_cast(bp); } #endif //_INC_VCCLR