OSDN Git Service

* path.cc (conv_path_list): Take cygwin_conv_path_t as third parameter.
[pf3gnuchains/pf3gnuchains4x.git] / winsup / cygwin / perprocess.h
1 /* per_process.h: main Cygwin header file.
2
3    Copyright 2000, 2001 Red Hat, Inc.
4
5 This file is part of Cygwin.
6
7 This software is a copyrighted work licensed under the terms of the
8 Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
9 details. */
10
11 #include <sys/cygwin.h>
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16
17 /* Pointer into application's static data */
18 extern struct per_process __cygwin_user_data;
19 #define user_data (&__cygwin_user_data)
20
21 /* We use the following to test that sizeof hasn't changed.  When adding
22    or deleting members, insert fillers or use the reserved entries.
23    Do not change this value. */
24 #define SIZEOF_PER_PROCESS (42 * 4)
25
26 #ifdef __cplusplus
27 }
28 #endif