]> gcc.gnu.org Git - gcc.git/blame - libobjc/libobjc_entry.c
env.c (initialize_env): Always initialize gomp_remaining_threads_lock mutex when...
[gcc.git] / libobjc / libobjc_entry.c
CommitLineData
88e17b57
BE
1/* GNU Objective C Runtime DLL Entry
2 Copyright (C) 1997 Free Software Foundation, Inc.
3 Contributed by Scott Christley <scottc@net-community.com>
4
38709cad 5This file is part of GCC.
88e17b57 6
38709cad 7GCC is free software; you can redistribute it and/or modify it
88e17b57
BE
8under the terms of the GNU General Public License as published by the
9Free Software Foundation; either version 2, or (at your option) any
10later version.
11
38709cad 12GCC is distributed in the hope that it will be useful, but WITHOUT
88e17b57
BE
13ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
38709cad 18along with GCC; see the file COPYING. If not, write to the Free
f9d09c43
KC
19Software Foundation, 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */
88e17b57
BE
21
22/* As a special exception, if you link this library with files compiled with
23 GCC to produce an executable, this does not cause the resulting executable
24 to be covered by the GNU General Public License. This exception does not
25 however invalidate any other reasons why the executable file might be
26 covered by the GNU General Public License. */
27
28#include <windows.h>
29
30/*
31 DLL entry function for Objective-C Runtime library
32 This function gets called everytime a process/thread attaches to DLL
33 */
34WINBOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call,
35 LPVOID lpReserved)
36{
37 switch(ul_reason_for_call)
38 {
39 case DLL_PROCESS_ATTACH:
40 break;
41 case DLL_PROCESS_DETACH:
42 break;
43 case DLL_THREAD_ATTACH:
44 break;
45 case DLL_THREAD_DETACH:
46 break;
47 }
48 return TRUE;
49}
50
51/*
52 This section terminates the list of imports under GCC. If you do not
53 include this then you will have problems when linking with DLLs.
54 */
55asm (".section .idata$3\n" ".long 0,0,0,0,0,0,0,0");
This page took 0.687302 seconds and 5 git commands to generate.