12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /****************************************************************************
- *
- * Module Title : SystemDependant.h
- *
- * Description : Miscellaneous system dependant functions header
- *
- * AUTHOR : Paul Wilkins
- *
- *****************************************************************************
- * Revision History
- *
- * 1.00 PGW 12/10/99 Configuration baseline
- *
- *****************************************************************************
- */
- /*******************************************3*********************************
- * Header Files
- *****************************************************************************
- */
- /****************************************************************************
- * Constants
- *****************************************************************************
- */
- /****************************************************************************
- * Types
- *****************************************************************************
- */
- /****************************************************************************
- * Data structures
- *****************************************************************************
- */
- /****************************************************************************
- * Functions
- *****************************************************************************
- */
- // Test machine config
- // Misc.
- extern void VP5_IssueWarning( char * WarningMessage );
- extern void PauseProcess( unsigned int SleepMs );
- // System dynamic memory allocation
- char * SytemGlobalAlloc( unsigned int Size );
- void SystemGlobalFree( char * MemPtr );
|