To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=40170





------- Additional comments from [EMAIL PROTECTED] Mon Jan 17 04:45:12 -0800 
2005 -------
oj: ULONG is still used, but is the cause of zillions issues while porting to
64bits. sal_uInt32 is equivalent to ULONG on 32bit platforms, but is 64bits on
64bit -> using sal_uInt32 is preferred.

See http://tools.openoffice.org/CodingGuidelines.sxw

See also comments in tools/inc/solar.h:

/*** common solar types ********************************************/
/* NOTE: these types are deprecated, or soon will be.  They should */
/* not be used in new code, and should be replaced with their      */
/* corresponding types from sal/types.h in old code when possible. */
/*   Previous typedefs from before sal convergence are in comments */
/*   to the right of the new types.                                */

typedef sal_Bool                BOOL;   /* typedef unsigned char   BOOL; */
typedef sal_uInt8               BYTE;   /* typedef unsigned char   BYTE; */
typedef sal_uInt16              USHORT; /* typedef unsigned short  USHORT; */
typedef sal_uInt32              ULONG;  /* typedef unsigned long   ULONG; */
typedef int                     FASTBOOL;

Sorry that I was not clear enough when reporting this.


---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to