Retired Document
Important: This sample code may not represent best practices for current development. The project may use deprecated symbols and illustrate technologies and techniques that are no longer recommended.
header/dpgMemory.h
/****************************************************************************** |
** ** |
** Module: dpgMemory.h ** |
** ** |
** ** |
** ** |
** ** |
** ** |
** Copyright (C) 1995-1996 Apple Computer, Inc. All rights reserved. ** |
** ** |
** ** |
*****************************************************************************/ |
#ifndef dpgMemory_h |
#define dpgMemory_h |
#if PRAGMA_ONCE |
#pragma once |
#endif |
#ifdef __cplusplus |
extern "C" { |
#endif /* __cplusplus */ |
void *dpgAlloc(unsigned long size); |
void dpgFree(void *ptr); |
void *dpgRealloc(void *ptr, unsigned long size); |
void dpgCopy(const void *src, void *dst, unsigned long cnt); |
#ifdef __cplusplus |
} |
#endif /* __cplusplus */ |
#endif |
Copyright © 2003 Apple Computer, Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2003-01-14