Changeset 223:2d153805c8cd
- Timestamp:
- 05/18/08 20:36:32
(8 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
fix loading ImmSetCandidateWindow? from imm32 instead of user32
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r221 |
r223 |
|
| 2668 | 2668 | |
|---|
| 2669 | 2669 | BOOL function( |
|---|
| 2670 | | HIMC hIMC, |
|---|
| 2671 | | LPCANDIDATEFORM lpCandidate |
|---|
| 2672 | | ) ImmSetCandidateWindow; |
|---|
| 2673 | | |
|---|
| 2674 | | BOOL function( |
|---|
| 2675 | 2670 | HWND hwnd, |
|---|
| 2676 | 2671 | COLORREF *pcrKey, |
|---|
| … | … | |
| 2701 | 2696 | static Symbol[] Symbols_User32 = [ |
|---|
| 2702 | 2697 | { "SetProcessDPIAware", cast(void**)& SetProcessDPIAware, 6, 0 }, |
|---|
| 2703 | | { "ImmSetCandidateWindow", cast(void**)& ImmSetCandidateWindow, 6, 0 }, |
|---|
| 2704 | 2698 | { "GetLayeredWindowAttributes", cast(void**)& GetLayeredWindowAttributes, 5, 1 }, |
|---|
| 2705 | 2699 | { "SetLayeredWindowAttributes", cast(void**)& SetLayeredWindowAttributes, 5, 0 }, |
|---|
| … | … | |
| 2752 | 2746 | DWORD dwBufLen |
|---|
| 2753 | 2747 | ) ImmGetCompositionStringW; |
|---|
| | 2748 | |
|---|
| | 2749 | BOOL function( |
|---|
| | 2750 | HIMC hIMC, |
|---|
| | 2751 | LPCANDIDATEFORM lpCandidate |
|---|
| | 2752 | ) ImmSetCandidateWindow; |
|---|
| | 2753 | |
|---|
| 2754 | 2754 | } |
|---|
| 2755 | 2755 | |
|---|
| … | … | |
| 2773 | 2773 | { "ImmGetCompositionStringW", cast(void**)& ImmGetCompositionStringW, 5, 1 }, |
|---|
| 2774 | 2774 | { "ImmGetCompositionStringA", cast(void**)& ImmGetCompositionStringA, 5, 1 }, |
|---|
| | 2775 | { "ImmSetCandidateWindow", cast(void**)& ImmSetCandidateWindow, 5, 1 }, |
|---|
| 2775 | 2776 | ]; |
|---|
| 2776 | 2777 | |
|---|