* win32-nat.c (psapi_module_handle): Remove static.
[deliverable/binutils-gdb.git] / gdb / gdbserver / win32-low.h
CommitLineData
68070c10
PA
1/* Internal interfaces for the Win32 specific target code for gdbserver.
2 Copyright (C) 2007 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
68070c10
PA
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
68070c10
PA
18
19#include <windows.h>
20
21/* Thread information structure used to track extra information about
22 each thread. */
23typedef struct win32_thread_info
24{
c436e841 25 /* The Win32 thread identifier. */
68070c10 26 DWORD tid;
c436e841
PA
27
28 /* The handle to the thread. */
68070c10 29 HANDLE h;
c436e841
PA
30
31 /* Non zero if SuspendThread was called on this thread. */
32 int suspended;
33
9c6c8194
PA
34#ifdef _WIN32_WCE
35 /* The context as retrieved right after suspending the thread. */
36 CONTEXT base_context;
37#endif
38
39 /* The context of the thread, including any manipulations. */
68070c10
PA
40 CONTEXT context;
41} win32_thread_info;
42
43struct win32_target_ops
44{
34b34921 45 /* The number of target registers. */
68070c10
PA
46 int num_regs;
47
34b34921 48 /* Perform initializations on startup. */
68070c10
PA
49 void (*initial_stuff) (void);
50
34b34921
PA
51 /* Fetch the context from the inferior. */
52 void (*get_thread_context) (win32_thread_info *th, DEBUG_EVENT *current_event);
68070c10 53
34b34921
PA
54 /* Flush the context back to the inferior. */
55 void (*set_thread_context) (win32_thread_info *th, DEBUG_EVENT *current_event);
56
57 /* Called when a thread was added. */
58 void (*thread_added) (win32_thread_info *th);
59
60 /* Fetch register from gdbserver regcache data. */
61 void (*fetch_inferior_register) (win32_thread_info *th, int r);
62
63 /* Store a new register value into the thread context of TH. */
64 void (*store_inferior_register) (win32_thread_info *th, int r);
68070c10
PA
65
66 void (*single_step) (win32_thread_info *th);
67
68 const unsigned char *breakpoint;
69 int breakpoint_len;
70
71 /* What string to report to GDB when it asks for the architecture,
72 or NULL not to answer. */
73 const char *arch_string;
74};
75
76extern struct win32_target_ops the_low_target;
77
68070c10
PA
78/* Map the Windows error number in ERROR to a locale-dependent error
79 message string and return a pointer to it. Typically, the values
80 for ERROR come from GetLastError.
81
82 The string pointed to shall not be modified by the application,
83 but may be overwritten by a subsequent call to strwinerror
84
85 The strwinerror function does not change the current setting
86 of GetLastError. */
87extern char * strwinerror (DWORD error);
88
89/* in wincecompat.c */
90
91extern void to_back_slashes (char *);
This page took 0.075664 seconds and 4 git commands to generate.