- Timestamp:
- Jun 12, 2000, 2:52:03 PM (25 years ago)
- Location:
- trunk/src/comctl32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/comctl32.def
r2126 r3692 1 ; $Id: comctl32.def,v 1.1 5 1999-12-18 20:56:57 achimhaExp $1 ; $Id: comctl32.def,v 1.16 2000-06-12 12:52:03 phaller Exp $ 2 2 LIBRARY COMCTL32 INITINSTANCE 3 3 DESCRIPTION 'COMCTL32 Common Controls Library' … … 74 74 LBItemFromPt = _LBItemFromPt@16 @14 75 75 76 76 _COMCTL32_9@16 @9 77 _COMCTL32_10@16 @10 77 78 DPA_Merge = _DPA_Merge@24 @11 78 79 … … 130 131 DSA_EnumCallback = _DSA_EnumCallback@12 @387 131 132 DSA_DestroyCallback = _DSA_DestroyCallback@12 @388 133 _COMCTL32_389@8 @389 134 _COMCTL32_390@16 @390 132 135 133 136 StrCSpnA = _COMCTL32_StrCSpnA@8 @356 -
trunk/src/comctl32/comctl32undoc.cpp
r3591 r3692 1 /* $Id: comctl32undoc.cpp,v 1. 5 2000-05-22 19:30:53 sandervlExp $ */1 /* $Id: comctl32undoc.cpp,v 1.6 2000-06-12 12:52:03 phaller Exp $ */ 2 2 /* 3 3 * Undocumented functions from COMCTL32.DLL … … 2534 2534 } 2535 2535 2536 DWORD WINAPI comctl32_389(DWORD x1, DWORD x2)2536 DWORD WINAPI COMCTL32_389(DWORD x1, DWORD x2) 2537 2537 { 2538 2538 dprintf(("comctl32_389: %x %X not implemented!!", x1, x2)); … … 2540 2540 } 2541 2541 2542 DWORD WINAPI comctl32_390(DWORD x1, DWORD x2, DWORD x3, DWORD x4) 2543 { 2544 dprintf(("comctl32_390: %x %x %x %x not implemented!!", x1, x2, x3, x4)); 2542 DWORD WINAPI COMCTL32_390(DWORD x1, DWORD x2, DWORD x3, DWORD x4) 2543 { 2544 dprintf(("comctl32_390: %x %x %x %x not implemented!!", x1, x2, x3, x4)); 2545 2546 /* Pseudo Assembler 2547 push [esp+arg_C] 2548 mov eax, [esp+4+arg_0] 2549 push [esp+4+arg_8] 2550 mov dword ptr [eax+1A8h], 1 2551 push [esp+8+arg_4] 2552 push dword ptr [eax + 38h] 2553 call ds:SetDIBColorTable 2554 retn 10h 2555 */ 2556 2545 2557 return 0; 2546 2558 } 2559 2560 2561 /***************************************************************************** 2562 * Name : 2563 * Purpose : 2564 * Parameters: 2565 * Variables : 2566 * Result : 2567 * Remark : COMCTL32.9 2568 * Likely to have something to do with COM object. 2569 * Status : UNTESTED UNKNOWN 2570 * 2571 * Author : Patrick Haller [Sun, 2000/06/09 09:00] 2572 *****************************************************************************/ 2573 2574 DWORD WINAPI COMCTL32_9(DWORD arg0, 2575 DWORD arg1, 2576 DWORD arg2, 2577 DWORD arg3) 2578 { 2579 dprintf(("COMCTL32: comctl32_9: %x %x %x %x not implemented!!", 2580 arg0, 2581 arg1, 2582 arg2, 2583 arg3)); 2584 2585 return 0; 2586 } 2587 2588 /***************************************************************************** 2589 * Name : 2590 * Purpose : 2591 * Parameters: 2592 * Variables : 2593 * Result : 2594 * Remark : COMCTL32.10 2595 * Likely to have something to do with COM object. 2596 * Status : UNTESTED UNKNOWN 2597 * 2598 * Author : Patrick Haller [Sun, 2000/06/09 09:00] 2599 *****************************************************************************/ 2600 2601 DWORD WINAPI COMCTL32_10(DWORD arg0, 2602 DWORD arg1, 2603 DWORD arg2, 2604 DWORD arg3) 2605 { 2606 dprintf(("COMCTL32: comctl32_10: %x %x %x %x not implemented!!", 2607 arg0, 2608 arg1, 2609 arg2, 2610 arg3)); 2611 2612 return 0; 2613 }
Note:
See TracChangeset
for help on using the changeset viewer.