Bochs/bochs-testing/plugin-test/test3-twomodules/module2.h
Bryce Denney 7f9c1489df - make it compile on non-win32 platforms by stuffing all the DLL details
into macros.  I got the idea for the MODULE1API(type) macros from
  expat.h that happens to be sitting on my disk.
- modified:
    test2-dynamic/module1.cc test2-dynamic/module1.h
    test3-twomodules/module1.cc test3-twomodules/module1.h
    test3-twomodules/module2.cc test3-twomodules/module2.h
    test4-interdep/module1.cc test4-interdep/module1.h
    test4-interdep/module2.cc test4-interdep/module2.h
2002-10-11 15:29:32 +00:00

12 lines
297 B
C

#ifndef MODULE2API
# if defined(_MSC_EXTENSIONS) && !defined(__BEOS__) && !defined(__CYGWIN__)
# define MODULE2API(type) __declspec(dllimport) type __cdecl
# else
# define MODULE2API(type) type
# endif
#endif
MODULE2API(extern int) n_operations;
MODULE2API(void) operation_occurred ();