vport.cpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //---------------------------------------------------------------------------
  2. //
  3. // VPort.cpp -- File contains the viewport wrappers for Honor Bound
  4. //
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. //---------------------------------------------------------------------------
  9. // Include Files
  10. #ifndef DSTD_H
  11. #include "dstd.h"
  12. #endif
  13. #ifndef VFX_H
  14. #include "vfx.h"
  15. #endif
  16. #include <gameos.hpp>
  17. //---------------------------------------------------------------------------
  18. // Macro Definitions
  19. //---------------------------------------------------------------------------
  20. // Global statics
  21. PANE *globalPane = NULL;
  22. WINDOW *globalWindow = NULL;
  23. //---------------------------------------------------------------------------
  24. //---------------------------------------------------------------------------
  25. //
  26. // Edit Log
  27. //
  28. //---------------------------------------------------------------------------