? sal.011302.diff ? unxmacxp.pro Index: inc/osl/module.h =================================================================== RCS file: /cvs/oo/porting/sal/inc/osl/module.h,v retrieving revision 1.6.8.2 diff -u -r1.6.8.2 module.h --- inc/osl/module.h 2001/10/02 03:55:14 1.6.8.2 +++ inc/osl/module.h 2002/01/14 03:20:20 @@ -105,10 +105,21 @@ void* pModule; sal_Char* pModuleName; }; + +// [ed] 1/13/02 The below seems to be a typo...it should be oslModule + +/*** OLD CODE *** + typedef struct _oslModule; #endif typedef void* oslModule; +*** END OLD CODE. NEW CODE: ***/ +typedef struct _oslModule * oslModule; +#else +typedef void *oslModule +#endif +/*** END NEW CODE ***/ /** Load a module.
@param strModuleName denotes the name of the module to be loaded.