1169689Skan/* Dummy subroutines for language-specific support on Windows.
2169689Skan   Contributed by Danny Smith (dannysmith@users.sourceforge.net)
3169689Skan   Copyright (C) 2005
4169689Skan   Free Software Foundation, Inc.
5169689Skan
6169689SkanThis file is part of GCC.
7169689Skan
8169689SkanGCC is free software; you can redistribute it and/or modify it under
9169689Skanthe terms of the GNU General Public License as published by the Free
10169689SkanSoftware Foundation; either version 2, or (at your option) any later
11169689Skanversion.
12169689Skan
13169689SkanGCC is distributed in the hope that it will be useful, but WITHOUT ANY
14169689SkanWARRANTY; without even the implied warranty of MERCHANTABILITY or
15169689SkanFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16169689Skanfor more details.
17169689Skan
18169689SkanYou should have received a copy of the GNU General Public License
19169689Skanalong with GCC; see the file COPYING.  If not, write to the Free
20169689SkanSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21169689Skan02110-1301, USA.  */
22169689Skan
23169689Skan#include "config.h"
24169689Skan#include "system.h"
25169689Skan#include "coretypes.h"
26169689Skan#include "tm.h"
27169689Skan#include "rtl.h"
28169689Skan#include "regs.h"
29169689Skan#include "hard-reg-set.h"
30169689Skan#include "output.h"
31169689Skan#include "tree.h"
32169689Skan#include "flags.h"
33169689Skan#include "tm_p.h"
34169689Skan#include "toplev.h"
35169689Skan#include "hashtab.h"
36169689Skan
37169689Skanbool
38169689Skani386_pe_type_dllimport_p (tree decl ATTRIBUTE_UNUSED)
39169689Skan{
40169689Skan  return false;
41169689Skan}
42169689Skan
43169689Skan
44169689Skanbool
45169689Skani386_pe_type_dllexport_p (tree decl ATTRIBUTE_UNUSED)
46169689Skan{
47169689Skan  return false;
48169689Skan}
49169689Skan
50169689Skan
51169689Skanvoid
52169689Skani386_pe_adjust_class_at_definition (tree t ATTRIBUTE_UNUSED)
53169689Skan{ }
54