Displaying 1 result from an estimated 1 matches for "dll_import".
Did you mean:
dll_export
2001 Oct 17
2
win32sdk shared memory issue -- proposed change of code
...o what would be expected when developing under UNIX, after all...
...well -- almost, as mentioned, the "_cdeclspec(dllimport)" attribute is required, such that
a modification of "vorbis/lib/registry.h" is required which would look like:
#if defined(_MSC_VER) && defined(DLL_IMPORT)
# define EXTERN _declspec(dllimport) extern
#else
# define EXTERN extern
#endif
EXTERN vorbis_func_time *_time_P[];
EXTERN vorbis_func_floor *_floor_P[];
EXTERN vorbis_func_residue *_residue_P[];
EXTERN vorbis_func_mapping *_mapping_P[];
I realize the aesthetics of having "EXTE...