1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- /*++
- Copyright (c) 2015 Minoca Corp.
- This file is licensed under the terms of the GNU Lesser General Public
- License version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details.
- 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
|