Changeset 21 for trunk/src/helpers/cnrh.c
- Timestamp:
- Jan 8, 2001, 6:54:48 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/cnrh.c
r17 r21 63 63 64 64 /* 65 *@@category: Helpers\PM helpers\Container helpers 66 * See cnrh.c. 67 */ 68 69 /* 65 70 *@@category: Helpers\PM helpers\Container helpers\Details view helpers 71 * these functions aid you in setting up the FIELDINFO structures 72 * for a container Details view. Use cnrhSetFieldInfos for that. 66 73 */ 67 74 … … 343 350 /* 344 351 *@@category: Helpers\PM helpers\Container helpers\Record core helpers 352 * functions for allocating and inserting records more easily. 353 * 354 * Use cnrhAllocRecords first to allocate, then cnrhInsertRecords 355 * to insert the records. 345 356 */ 346 357 … … 742 753 /* 743 754 *@@category: Helpers\PM helpers\Container helpers\View management 755 * functions for easily managing container views. 756 * 757 * Most importantly, this has the BEGIN_CNRINFO and END_CNRINFO 758 * macros which make CNRINFO handling easier. Also see 759 * cnrhSetView for that. 744 760 */ 745 761 … … 812 828 * 813 829 * With fl, specify any or none of the following: 830 * 814 831 * -- FRFP_RIGHTSPLITWINDOW: test right split Details view 815 832 * instead of main cnr. 833 * 816 834 * -- FRFP_SCREENCOORDS: *pptl specifies the point to 817 835 * check in _screen_ coordinates, instead of … … 1310 1328 /* 1311 1329 *@@category: Helpers\PM helpers\Container helpers\Record relations/iteration 1330 * functions for querying the relation of records and 1331 * iterating through records. 1312 1332 */ 1313 1333 … … 1396 1416 // first call: get parent of precTest; 1397 1417 // subsequent calls: climb up 1398 precParentThis = WinSendMsg(hwndCnr,1399 CM_QUERYRECORD,1400 precParentThis,1401 MPFROM2SHORT(CMA_PARENT,1402 CMA_ITEMORDER));1418 precParentThis = (PRECORDCORE)WinSendMsg(hwndCnr, 1419 CM_QUERYRECORD, 1420 precParentThis, 1421 MPFROM2SHORT(CMA_PARENT, 1422 CMA_ITEMORDER)); 1403 1423 if (precParentThis == (PRECORDCORE)-1) 1404 1424 break;
Note:
See TracChangeset
for help on using the changeset viewer.