C# 클래스 Microsoft.WinAny.memory

파일 보기 프로젝트 열기: jhabjan/Ghostscript.NET

공개 메소드들

메소드 설명
memcpy ( byte dest, byte src, uint count ) : void

Copies bytes between buffers.

memset ( byte dest, byte c, uint count ) : void

Sets buffers to a specified character.

realloc ( byte memblock, uint size, uint newsize ) : byte*

Reallocate memory blocks.

메소드 상세

memcpy() 공개 정적인 메소드

Copies bytes between buffers.
public static memcpy ( byte dest, byte src, uint count ) : void
dest byte New buffer.
src byte Buffer to copy from.
count uint
리턴 void

memset() 공개 정적인 메소드

Sets buffers to a specified character.
public static memset ( byte dest, byte c, uint count ) : void
dest byte Pointer to destination.
c byte Character to set.
count uint Number of characters.
리턴 void

realloc() 공개 정적인 메소드

Reallocate memory blocks.
public static realloc ( byte memblock, uint size, uint newsize ) : byte*
memblock byte Pointer to previously allocated memory block.
size uint Previously allocated memory block size.
newsize uint New size in bytes.
리턴 byte*