Some object files made from *_dsc.c files get linked both into the Contiki core (for desktop icons) as well as into *.dsc files. So make sure that the *_dsc symbol gets exported regardless in which context the object files are made.

This commit is contained in:
oliverschmidt 2006-08-16 22:47:01 +00:00
parent 52947189d0
commit 155b37491c
1 changed files with 1 additions and 2 deletions

View File

@ -8,11 +8,10 @@
#if _USRDLL
#define CCIF __declspec(dllimport)
#define CLIF __declspec(dllexport)
#else
#define CCIF __declspec(dllexport)
#define CLIF
#endif
#define CLIF __declspec(dllexport)