123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /*++
- Copyright (c) 2015 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- memory.h
- Abstract:
- This header is included for application compatibility only. New
- applications should not include this header.
- Author:
- Evan Green 12-Jan-2015
- --*/
- #ifndef _MEMORY_H
- #define _MEMORY_H
- //
- // ------------------------------------------------------------------- Includes
- //
- #include <string.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // -------------------------------------------------------- Function Prototypes
- //
- #endif
|