systemdependant.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /****************************************************************************
  2. *
  3. * Module Title : SystemDependant.h
  4. *
  5. * Description : Miscellaneous system dependant functions header
  6. *
  7. * AUTHOR : Paul Wilkins
  8. *
  9. *****************************************************************************
  10. * Revision History
  11. *
  12. * 1.00 PGW 12/10/99 Configuration baseline
  13. *
  14. *****************************************************************************
  15. */
  16. /*******************************************3*********************************
  17. * Header Files
  18. *****************************************************************************
  19. */
  20. /****************************************************************************
  21. * Constants
  22. *****************************************************************************
  23. */
  24. /****************************************************************************
  25. * Types
  26. *****************************************************************************
  27. */
  28. /****************************************************************************
  29. * Data structures
  30. *****************************************************************************
  31. */
  32. /****************************************************************************
  33. * Functions
  34. *****************************************************************************
  35. */
  36. // Test machine config
  37. // Misc.
  38. extern void VP5_IssueWarning( char * WarningMessage );
  39. extern void PauseProcess( unsigned int SleepMs );
  40. // System dynamic memory allocation
  41. char * SytemGlobalAlloc( unsigned int Size );
  42. void SystemGlobalFree( char * MemPtr );