dbgarch.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*++
  2. Copyright (c) 2013 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. dbgarch.c
  9. Abstract:
  10. This module implements architecture specific support for the debugger
  11. client.
  12. Author:
  13. Evan Green 3-Jun-2013
  14. Environment:
  15. Debug Client
  16. --*/
  17. //
  18. // ------------------------------------------------------------------- Includes
  19. //
  20. #include "dbgrtl.h"
  21. #include <minoca/debug/dbgext.h>
  22. //
  23. // ---------------------------------------------------------------- Definitions
  24. //
  25. //
  26. // ------------------------------------------------------ Data Type Definitions
  27. //
  28. //
  29. // ----------------------------------------------- Internal Function Prototypes
  30. //
  31. //
  32. // -------------------------------------------------------------------- Globals
  33. //
  34. //
  35. // ------------------------------------------------------------------ Functions
  36. //
  37. ULONG
  38. DbgGetHostMachineType (
  39. VOID
  40. )
  41. /*++
  42. Routine Description:
  43. This routine returns the machine type for the currently running host (this
  44. machine).
  45. Arguments:
  46. None.
  47. Return Value:
  48. Returns the machine type. See MACHINE_TYPE_* definitions.
  49. --*/
  50. {
  51. return MACHINE_TYPE_X86;
  52. }
  53. //
  54. // --------------------------------------------------------- Internal Functions
  55. //