diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-03-01 13:07:36 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-03-01 13:07:36 +0000 |
commit | d35356e840b98f614212fcfedb8cf46ad89b4861 (patch) | |
tree | 2bbc8ce98045334f5672e09fe66155542ef8d89c | |
parent | b341b2d002c9d8cd125c53b4c274d1a22244e531 (diff) | |
download | haskell-d35356e840b98f614212fcfedb8cf46ad89b4861.tar.gz |
update docs w.r.t. dllMain() definition (EXTFUN is no more)
-rw-r--r-- | ghc/docs/users_guide/win32-dlls.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/docs/users_guide/win32-dlls.xml b/ghc/docs/users_guide/win32-dlls.xml index 70defea5c5..959f7ce1b6 100644 --- a/ghc/docs/users_guide/win32-dlls.xml +++ b/ghc/docs/users_guide/win32-dlls.xml @@ -412,7 +412,7 @@ RTS-––a possible implementation is: #include <windows.h> #include <Rts.h> -EXTFUN(__stginit_Adder); +extern void__stginit_Adder(void); static char* args[] = { "ghcDll", NULL }; /* N.B. argv arrays must end with NULL */ |