Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PR_NEW

« NSPR API リファレンス « Memory Management Operations

ヒープ領域に指定されたサイズのメモリを確保します。

構文

#include <prmem.h>

_type * PR_NEW(_struct);


パラメータ

_struct
型の名前

戻り値

_struct 型を含むことができるサイズのバッファへのポインタ、もしくはメモリ確保に失敗した場合は NULL を返します。PR_GetError() を呼ぶことで、libc の関数 malloc() が戻したエラーを取得できます。

解説

このマクロは、sizeof(_struct) の大きさを持つメモリ領域を確保し、そのメモリ領域へのポインタを返します。

ドキュメントのタグと貢献者

 このページの貢献者: Shimono
 最終更新者: Shimono,