|
From: <kar...@us...> - 2006-04-05 21:50:28
|
Revision: 1196 Author: karstenw Date: 2006-04-05 14:50:20 -0700 (Wed, 05 Apr 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1196&view=rev Log Message: ----------- removed some parameter names to resolve shadow warning Modified Paths: -------------- Frontier/trunk/Common/headers/FDllCall.h Frontier/trunk/Common/headers/WinSockNetEvents.h Frontier/trunk/Common/headers/frontierconfig.h Frontier/trunk/Common/headers/langdll.h Modified: Frontier/trunk/Common/headers/FDllCall.h =================================================================== --- Frontier/trunk/Common/headers/FDllCall.h 2006-04-05 21:49:30 UTC (rev 1195) +++ Frontier/trunk/Common/headers/FDllCall.h 2006-04-05 21:50:20 UTC (rev 1196) @@ -262,9 +262,15 @@ odbBool (xCALLBACK *xOdbNewListValue) (odbRef odb, odbValueRecord *value, odbBool flRecord); odbBool (xCALLBACK *xOdbGetListCount) (odbRef odb, odbValueRecord *value, long * cnt); - odbBool (xCALLBACK *xOdbDeleteListValue) (odbRef odb, odbValueRecord *value, long index, char * recordname); - odbBool (xCALLBACK *xOdbSetListValue) (odbRef odb, odbValueRecord *value, long index, char * recordname, odbValueRecord *valueData); - odbBool (xCALLBACK *xOdbGetListValue) (odbRef odb, odbValueRecord *value, long index, char * recordname, odbValueRecord *valueReturn); + + // 2006-04-04 - kw --- removed parameter names + // odbBool (xCALLBACK *xOdbDeleteListValue) (odbRef odb, odbValueRecord *value, long index, char * recordname); + odbBool (xCALLBACK *xOdbDeleteListValue) (odbRef, odbValueRecord *, long, char *); + // odbBool (xCALLBACK *xOdbSetListValue) (odbRef odb, odbValueRecord *value, long index, char * recordname, odbValueRecord *valueData); + odbBool (xCALLBACK *xOdbSetListValue) (odbRef, odbValueRecord *, long, char *, odbValueRecord *); + // odbBool (xCALLBACK *xOdbGetListValue) (odbRef odb, odbValueRecord *value, long index, char * recordname, odbValueRecord *valueReturn); + odbBool (xCALLBACK *xOdbGetListValue) (odbRef, odbValueRecord *, long, char *, odbValueRecord *); + odbBool (xCALLBACK *xOdbAddListValue) (odbRef odb, odbValueRecord *value, char * recordname, odbValueRecord *valueData); odbBool (xCALLBACK *xInvoke) (odbString bsscriptname, void * params, odbValueRecord * value, odbBool *flfound, unsigned int * errarg); Modified: Frontier/trunk/Common/headers/WinSockNetEvents.h =================================================================== --- Frontier/trunk/Common/headers/WinSockNetEvents.h 2006-04-05 21:49:30 UTC (rev 1195) +++ Frontier/trunk/Common/headers/WinSockNetEvents.h 2006-04-05 21:50:20 UTC (rev 1196) @@ -102,7 +102,9 @@ extern boolean fwsNetEventWriteStream (unsigned long stream, unsigned long bytesToWrite, char * buffer); /* Set up a listner on a port */ -extern boolean fwsNetEventListenStream (unsigned long port, long depth, bigstring callback, unsigned long refcon, unsigned long * stream, unsigned long ipaddr, long hdatabase); +// 2006-04-04 - kw --- removed parameter names +// extern boolean fwsNetEventListenStream (unsigned long port, long depth, bigstring callback, unsigned long refcon, unsigned long * stream, unsigned long ipaddr, long hdatabase); +extern boolean fwsNetEventListenStream (unsigned long, long, bigstring, unsigned long, unsigned long *, unsigned long, long); /* get the status of a stream */ extern boolean fwsNetEventStatusStream (unsigned long stream, bigstring status, unsigned long * bytesPending); Modified: Frontier/trunk/Common/headers/frontierconfig.h =================================================================== --- Frontier/trunk/Common/headers/frontierconfig.h 2006-04-05 21:49:30 UTC (rev 1195) +++ Frontier/trunk/Common/headers/frontierconfig.h 2006-04-05 21:50:20 UTC (rev 1196) @@ -76,7 +76,7 @@ boolean flvertscroll: 1; - boolean flwindowfloats: 1; /*is it a floating palette window?*/ + boolean flwindowfloats: 1; /*is it a floating palette window?*/ // NOT USED boolean flmessagearea: 1; /*allocate space for a message area?*/ Modified: Frontier/trunk/Common/headers/langdll.h =================================================================== --- Frontier/trunk/Common/headers/langdll.h 2006-04-05 21:49:30 UTC (rev 1195) +++ Frontier/trunk/Common/headers/langdll.h 2006-04-05 21:50:20 UTC (rev 1196) @@ -62,9 +62,16 @@ odbBool xCALLBACK extOdbNewListValue (odbRef odb, odbValueRecord *valueList, odbBool flRecord); odbBool xCALLBACK extOdbGetListCount (odbRef odb, odbValueRecord *valueList, long * cnt); -odbBool xCALLBACK extOdbDeleteListValue (odbRef odb, odbValueRecord *valueList, long index, char * recordname); -odbBool xCALLBACK extOdbSetListValue (odbRef odb, odbValueRecord *valueList, long index, char * recordname, odbValueRecord *valueData); -odbBool xCALLBACK extOdbGetListValue (odbRef odb, odbValueRecord *valueList, long index, char * recordname, odbValueRecord *valueReturn); + +// 2006-04-04 - kw --- removed parameter names +// odbBool xCALLBACK extOdbDeleteListValue (odbRef odb, odbValueRecord *valueList, long index, char * recordname); +odbBool xCALLBACK extOdbDeleteListValue (odbRef, odbValueRecord *, long, char *); + +// odbBool xCALLBACK extOdbSetListValue (odbRef odb, odbValueRecord *valueList, long index, char * recordname, odbValueRecord *valueData); +odbBool xCALLBACK extOdbSetListValue (odbRef, odbValueRecord *, long, char *, odbValueRecord *); +// odbBool xCALLBACK extOdbGetListValue (odbRef odb, odbValueRecord *valueList, long index, char * recordname, odbValueRecord *valueReturn); +odbBool xCALLBACK extOdbGetListValue (odbRef, odbValueRecord *, long, char *, odbValueRecord *); + odbBool xCALLBACK extOdbAddListValue (odbRef odb, odbValueRecord *valueList, char * recordname, odbValueRecord *valueData); odbBool xCALLBACK extInvoke (bigstring bsscriptname, void * pDispParams, odbValueRecord * retval, boolean *flfoundhandler, unsigned int * errarg); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |