Desktop Functions: Smart Device Functions:
|
Search Results for "LocalAlloc" in [All]rapi1: CeRapiInvoke
outBuffer = (LPTSTR) LocalAlloc( LPTR, sizeof(TCHAR) * MAXSTRINGLENGTH ); kernel322: LocalAlloc
static extern IntPtr LocalAlloc(uint uFlags, UIntPtr uBytes); The following method wraps LocalAlloc in order to allocate a zeroed memory block of the specified size:
IntPtr memPtr = LocalAlloc(LocalMemoryFlags.LPTR, new UIntPtr((uint)size)); 3: LocalFree
EnumsThese flags may be used with the LocalAlloc function. See the [LocalAlloc] function on MSDN. |