Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web/faq
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2003-01-05 19:19:43 +0300
committerMiguel de Icaza <miguel@gnome.org>2003-01-05 19:19:43 +0300
commit873e6ce0a29cb2d77b8f604663b0a4af3d8ae372 (patch)
treecc452bdcf7bdd69d9f18476391da47c0654724a5 /web/faq
parent5131a5022288555fbb7cfa9d0269c5079b9caea3 (diff)
Faq updates
svn path=/trunk/mono/; revision=10165
Diffstat (limited to 'web/faq')
-rw-r--r--web/faq10
1 files changed, 10 insertions, 0 deletions
diff --git a/web/faq b/web/faq
index d9753e68721..f51fd058017 100644
--- a/web/faq
+++ b/web/faq
@@ -708,6 +708,16 @@ Q: I'm wondering if there are any plans to start using nant to build the
A: Maybe well be doing some sort of automated build process + testing when
the summer finish.
+Q: My C code uses the __stdcall which is not availble on Linux, how can I
+ make the code portable Windows/Unix across platforms?
+
+A: Replace the __stdcall attribute with the STDCALL macro, and include this
+ in your C code for newer gcc versions:
+
+ #ifndef STDCALL
+ #define STDCALL __attribute__((stdcall))
+ #endif
+
<a name="asp">
** Mono and ASP.NET