類別:AllocationLink
記憶體配置連結串列
類型 | 使用 | 成員 | 說明 |
建構子 | public | ||
建構子 | public | ||
建構子 | public | ||
解構子 | public | ||
資料 | public | ||
資料 | public |
建議
外部程式不應使用這個類別,這是專門為了「音訊驅動介面」內部使用的類別,使用於整群記憶體配置的紀錄功能。C/C++定義
class AllocationLink
{
public:
AllocationLink * next ;
void * buffer ;
explicit AllocationLink (void) ;
AllocationLink (AllocationLink * next,void * buffer) ;
AllocationLink (const AllocationLink & link) ;
virtual ~AllocationLink (void) ;
};