[Mmclibrary-cvs] mmclibrary/MMCLib2 Interfaces.cs,1.6,1.7
Brought to you by:
imjimmurphy,
kachalkov
From: Lesley v. Z. <ex...@us...> - 2005-01-19 22:07:44
|
Update of /cvsroot/mmclibrary/mmclibrary/MMCLib2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21066 Modified Files: Interfaces.cs Log Message: Method parameter names should use a camel case for their names Index: Interfaces.cs =================================================================== RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Interfaces.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Interfaces.cs 7 Nov 2004 14:44:36 -0000 1.6 --- Interfaces.cs 19 Jan 2005 22:07:34 -0000 1.7 *************** *** 59,63 **** void Destroy(); void QueryDataObject(int cookie, uint type, out IDataObject ppDataObject); ! void GetDisplayInfo(ref SCOPEDATAITEM ResultDataItem); [PreserveSig()] int CompareObjects(IDataObject lpDataObjectA, IDataObject lpDataObjectB); --- 59,63 ---- void Destroy(); void QueryDataObject(int cookie, uint type, out IDataObject ppDataObject); ! void GetDisplayInfo(ref SCOPEDATAITEM resultDataItem); [PreserveSig()] int CompareObjects(IDataObject lpDataObjectA, IDataObject lpDataObjectB); *************** *** 78,82 **** [PreserveSig()] int GetResultViewType(int cookie, out IntPtr ppViewType, out int pViewOptions); ! void GetDisplayInfo(ref RESULTDATAITEM ResultDataItem); [PreserveSig()] int CompareObjects(IDataObject lpDataObjectA, IDataObject lpDataObjectB); --- 78,82 ---- [PreserveSig()] int GetResultViewType(int cookie, out IntPtr ppViewType, out int pViewOptions); ! void GetDisplayInfo(ref RESULTDATAITEM resultDataItem); [PreserveSig()] int CompareObjects(IDataObject lpDataObjectA, IDataObject lpDataObjectB); *************** *** 231,235 **** void UpdateItem(uint itemID); void Sort(int nColumn, uint dwSortOptions, int lUserParam); ! void SetDescBarText([MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)] String DescText); void SetItemCount(int nItemCount, uint dwOptions); } --- 231,235 ---- void UpdateItem(uint itemID); void Sort(int nColumn, uint dwSortOptions, int lUserParam); ! void SetDescBarText([MarshalAs(System.Runtime.InteropServices.UnmanagedType.LPWStr)] String descText); void SetItemCount(int nItemCount, uint dwOptions); } |