1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /*++
- Copyright (c) 2013 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- dbgarch.c
- Abstract:
- This module implements architecture specific support for the debugger
- client.
- Author:
- Evan Green 3-Jun-2013
- Environment:
- Debug Client
- --*/
- //
- // ------------------------------------------------------------------- Includes
- //
- #include "dbgrtl.h"
- #include <minoca/debug/dbgext.h>
- //
- // ---------------------------------------------------------------- Definitions
- //
- //
- // ------------------------------------------------------ Data Type Definitions
- //
- //
- // ----------------------------------------------- Internal Function Prototypes
- //
- //
- // -------------------------------------------------------------------- Globals
- //
- //
- // ------------------------------------------------------------------ Functions
- //
- ULONG
- DbgGetHostMachineType (
- VOID
- )
- /*++
- Routine Description:
- This routine returns the machine type for the currently running host (this
- machine).
- Arguments:
- None.
- Return Value:
- Returns the machine type. See MACHINE_TYPE_* definitions.
- --*/
- {
- return MACHINE_TYPE_X86;
- }
- //
- // --------------------------------------------------------- Internal Functions
- //
|