Mon Nov 22 13:58:56 1993 David Metcalfe <david@prism.demon.co.uk> * [windows/scroll.c] Preliminary implementations of ScrollWindow, ScrollDC and ScrollWindowEx. Nov 21, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [controls/listbox.c] Optimization of redraw during 'Add' or 'Insert'. * [controls/scroll.c] Optimization of WM_PAINT during 'thumbtracking'. * [controls/button.c] Add of beta implement of 'BS_OWNERDRAW' * [controls/static.c] Style 'SS_ICON' new supported. * [misc/message.c] Begin of implemantation of MB_XXX styles. * [loader/resource.c] Function LoadIcon() : now prepare transparency Bitmap mask. Function LoadCursor() : now prepare a 'X pixmapcursor'. New function SetCursor() : not finished. New function ShowCursor() : not finished. New function AccessResource() : stub. * [obj/dib.c] Function DrawIcon(): deugging phase of icon transparency mask. * [loader/library.c] new file for news functions LoadLibrary() & FreeLibrary(). * [sysres.dll] Resources only 16bits DLL for System Resources, icons, etc... Sun Nov 14 14:39:06 1993 julliard@di.epfl.ch (Alexandre Julliard) * [include/dialog.h] [windows/dialog.c] Simplified dialog template parsing. Implemented DialogBoxIndirect(). * [windows/win.c] Fixed bug in CreateWindow() when aborting window creation. Modified UpdateWindow() to only update visible windows. Implemented IsWindow(). Nov 14, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [controls/listbox.c] Listbox control window : new messages. * [controls/combo.c] Combo box control window : new messages. * [misc/message.c] Moved stub MessageBox() to this new file. Implemented of a callback, now MessageBox show a window. * [loader/resource.c] New function DestroyIcon() New function DestroyCursor() Filled stub LoadIcon() Filled stub LoadCursor() Bug fixed in FindResourceByName() : missing lseek(). * [obj/dib.c] New function DrawIcon() * [windows/win.c] New function CloseWindow() New function OpenIcon() New function IsIconic() New Function FindWindow() Sun Nov 14 08:27:19 1993 Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de) * [loader/selector.c] Wrote AllocCStoDSAlias() and AllocDStoCSAlias() Sun Nov 14 08:27:19 1993 Bob Amstadt (bob at amscons) * [loader/selector.c] Wrote AllocSelector() and PrestoChangoSelector(). YUK! Sat Nov 13 13:56:42 1993 Bob Amstadt (bob at amscons) * [loader/resource.c] Wrote FindResource(), LoadResource(), LockResource(), and FreeResource() * [include/segmem.h] [loader/selector.c] [loader/signal.h] Changed selector allocation method. Sun Nov 10 08:27:19 1993 Karl Guenter Wuensch (hz225wu@unidui.uni-duisburg.de) * [if1632/callback.c if1632/call.S if1632/user.spec] added Catch (KERNEL.55) and Throw (KERNEL.56) Nov 7, 93 martin2@trgcorp.solucorp.qc.ca (Martin Ayotte) * [controls/scroll.c] Scroll bar control window Bug resolved : Painting message before scroll visible. * [controls/listbox.c] Listbox control window Destroy cleanup. * [controls/combo.c] Combo box control window Destroy cleanup. * [controls/button.c] GetCheck Message now return is state. * [windows/win.c] New function IsWindowVisible()
175 lines
8.8 KiB
Ruby
175 lines
8.8 KiB
Ruby
# $Id: user.spec,v 1.3 1993/07/04 04:04:21 root Exp root $
|
|
#
|
|
name user
|
|
id 2
|
|
length 540
|
|
|
|
1 pascal MessageBox(word ptr ptr word) MessageBox(1 2 3 4)
|
|
5 pascal InitApp(word) USER_InitApp(1)
|
|
6 pascal PostQuitMessage(word) PostQuitMessage(1)
|
|
10 pascal SetTimer(word word word ptr) SetTimer(1 2 3 4)
|
|
11 pascal SetSystemTimer(word word word ptr) SetSystemTimer(1 2 3 4)
|
|
12 pascal KillTimer(word word) KillTimer(1 2)
|
|
13 pascal GetTickCount() GetTickCount()
|
|
14 return GetTimerResolution 0 1000
|
|
15 pascal GetCurrentTime() GetTickCount()
|
|
18 pascal SetCapture(word) SetCapture(1)
|
|
19 pascal ReleaseCapture() ReleaseCapture()
|
|
20 pascal SetDoubleClickTime(word) SetDoubleClickTime(1)
|
|
21 pascal GetDoubleClickTime() GetDoubleClickTime()
|
|
22 pascal SetFocus(word) SetFocus(1)
|
|
23 pascal GetFocus() GetFocus()
|
|
31 pascal IsIconic(word) IsIconic(1)
|
|
32 pascal GetWindowRect(word ptr) GetWindowRect(1 2)
|
|
33 pascal GetClientRect(word ptr) GetClientRect(1 2)
|
|
36 pascal GetWindowText(word ptr word) GetWindowText(1 2 3)
|
|
37 pascal SetWindowText(word ptr) SetWindowText(1 2)
|
|
38 pascal GetWindowTextLength(word) GetWindowTextLength(1)
|
|
39 pascal BeginPaint(word ptr) BeginPaint(1 2)
|
|
40 pascal EndPaint(word ptr) EndPaint(1 2)
|
|
41 pascal CreateWindow(ptr ptr long s_word s_word s_word s_word word word word ptr)
|
|
CreateWindow(1 2 3 4 5 6 7 8 9 10 11)
|
|
42 pascal ShowWindow(word word) ShowWindow(1 2)
|
|
43 pascal CloseWindow(word) CloseWindow(1)
|
|
44 pascal OpenIcon(word) OpenIcon(1)
|
|
46 pascal GetParent(word) GetParent(1)
|
|
47 pascal IsWindow(word) IsWindow(1)
|
|
48 pascal IsChild(word word) IsChild(1 2)
|
|
49 pascal IsWindowVisible(word) IsWindowVisible(1)
|
|
50 pascal FindWindow(ptr ptr) FindWindow(1 2)
|
|
53 pascal DestroyWindow(word) DestroyWindow(1)
|
|
56 pascal MoveWindow(word word word word word word)
|
|
MoveWindow(1 2 3 4 5 6)
|
|
57 pascal RegisterClass(ptr) RegisterClass(1)
|
|
61 pascal ScrollWindow(word s_word s_word ptr ptr) ScrollWindow(1 2 3 4 5)
|
|
62 pascal SetScrollPos(word word word word) SetScrollPos(1 2 3 4)
|
|
64 pascal SetScrollRange(word word word word word) SetScrollRange(1 2 3 4 5)
|
|
66 pascal GetDC(word) GetDC(1)
|
|
68 pascal ReleaseDC(word word) ReleaseDC(1 2)
|
|
69 pascal SetCursor(word word) SetCursor(1 2)
|
|
71 pascal ShowCursor(word word) ShowCursor(1 2)
|
|
72 pascal SetRect(ptr s_word s_word s_word s_word) SetRect(1 2 3 4 5)
|
|
73 pascal SetRectEmpty(ptr) SetRectEmpty(1)
|
|
74 pascal CopyRect(ptr ptr) CopyRect(1 2)
|
|
75 pascal IsRectEmpty(ptr) IsRectEmpty(1)
|
|
76 pascal PtInRect(ptr long) PtInRect(1 2)
|
|
77 pascal OffsetRect(ptr s_word s_word) OffsetRect(1 2 3)
|
|
78 pascal InflateRect(ptr s_word s_word) InflateRect(1 2 3)
|
|
79 pascal IntersectRect(ptr ptr ptr) IntersectRect(1 2 3)
|
|
80 pascal UnionRect(ptr ptr ptr) UnionRect(1 2 3)
|
|
81 pascal FillRect(word ptr word) FillRect(1 2 3)
|
|
82 pascal InvertRect(word ptr) InvertRect(1 2)
|
|
83 pascal FrameRect(word ptr word) FrameRect(1 2 3)
|
|
84 pascal DrawIcon(word s_word s_word word) DrawIcon(1 2 3 4)
|
|
85 pascal DrawText(word ptr s_word ptr word) DrawText(1 2 3 4 5)
|
|
87 pascal DialogBox(word ptr word ptr) DialogBox(1 2 3 4)
|
|
88 pascal EndDialog(word s_word) EndDialog(1 2)
|
|
89 pascal CreateDialog(word ptr word ptr) CreateDialog(1 2 3 4)
|
|
90 pascal IsDialogMessage(word ptr) IsDialogMessage(1 2)
|
|
91 pascal GetDlgItem(word word) GetDlgItem(1 2)
|
|
92 pascal SetDlgItemText(word ptr) SetDlgItemText(1 2)
|
|
93 pascal GetDlgItemText(word word ptr word) GetDlgItemText(1 2 3 4)
|
|
94 pascal SetDlgItemInt(word word word word) SetDlgItemInt(1 2 3 4)
|
|
95 pascal GetDlgItemInt(word word ptr word) GetDlgItemInt(1 2 3 4)
|
|
96 pascal CheckRadioButton(word word word word) CheckRadioButton(1 2 3 4)
|
|
97 pascal CheckDlgButton(word word word) CheckDlgButton(1 2 3)
|
|
98 pascal IsDlgButtonChecked(word word) IsDlgButtonChecked(1 2)
|
|
101 pascal SendDlgItemMessage(word word word word long)
|
|
SendDlgItemMessage(1 2 3 4 5)
|
|
102 pascal AdjustWindowRect(ptr long word) AdjustWindowRect(1 2 3)
|
|
103 pascal MapDialogRect(word ptr) MapDialogRect(1 2)
|
|
104 pascal MessageBeep(word) MessageBeep(1)
|
|
106 pascal GetKeyState(word) GetKeyState(1)
|
|
107 pascal DefWindowProc(word word word long) DefWindowProc(1 2 3 4)
|
|
108 pascal GetMessage(ptr word word word) GetMessage(1 2 3 4)
|
|
109 pascal PeekMessage(ptr word word word word) PeekMessage(1 2 3 4 5)
|
|
110 pascal PostMessage(word word word long) PostMessage(1 2 3 4)
|
|
111 pascal SendMessage(word word word long) SendMessage(1 2 3 4)
|
|
113 pascal TranslateMessage(ptr) TranslateMessage(1)
|
|
114 pascal DispatchMessage(ptr) DispatchMessage(1)
|
|
118 pascal RegisterWindowMessage(ptr) RegisterWindowMessage(1)
|
|
119 pascal GetMessagePos() GetMessagePos()
|
|
120 pascal GetMessageTime() GetMessageTime()
|
|
122 pascal CallWindowProc(ptr word word word long) CallWindowProc(1 2 3 4 5)
|
|
124 pascal UpdateWindow(word) UpdateWindow(1)
|
|
125 pascal InvalidateRect(word ptr word) InvalidateRect(1 2 3)
|
|
126 pascal InvalidateRgn(word word word) InvalidateRgn(1 2 3)
|
|
127 pascal ValidateRect(word ptr) ValidateRect(1 2)
|
|
128 pascal ValidateRgn(word word) ValidateRgn(1 2)
|
|
129 pascal GetClassWord(word s_word) GetClassWord(1 2)
|
|
130 pascal SetClassWord(word s_word word) SetClassWord(1 2 3)
|
|
131 pascal GetClassLong(word s_word) GetClassLong(1 2)
|
|
132 pascal SetClassLong(word s_word long) SetClassLong(1 2 3)
|
|
133 pascal GetWindowWord(word s_word) GetWindowWord(1 2)
|
|
134 pascal SetWindowWord(word s_word word) SetWindowWord(1 2 3)
|
|
135 pascal GetWindowLong(word s_word) GetWindowLong(1 2)
|
|
136 pascal SetWindowLong(word s_word long) SetWindowLong(1 2 3)
|
|
150 pascal LoadMenu(word ptr) LoadMenu(1 2)
|
|
151 pascal CreateMenu() CreateMenu()
|
|
154 pascal CheckMenu(word word word) CheckMenu(1 2 3)
|
|
157 pascal GetMenu(word) GetMenu(1)
|
|
158 pascal SetMenu(word word) SetMenu(1 2)
|
|
171 pascal WinHelp(word word long) WinHelp(1 2 3)
|
|
173 pascal LoadCursor(word ptr) LoadCursor(1 2)
|
|
174 pascal LoadIcon(word ptr) LoadIcon(1 2)
|
|
175 pascal LoadBitmap(word ptr) LoadBitmap(1 2)
|
|
176 pascal LoadString(word word ptr s_word) LoadString(1 2 3 4)
|
|
177 pascal LoadAccelerators(word ptr) LoadAccelerators(1 2)
|
|
179 pascal GetSystemMetrics(word) GetSystemMetrics(1)
|
|
180 pascal GetSysColor(word) GetSysColor(1)
|
|
181 pascal SetSysColors(word ptr ptr) SetSysColors(1 2 3)
|
|
182 pascal KillSystemTimer(word word) KillSystemTimer(1 2)
|
|
190 pascal GetUpdateRect(word ptr word) GetUpdateRect(1 2 3)
|
|
218 pascal DialogBoxIndirect(word word word ptr) DialogBoxIndirect(1 2 3 4)
|
|
219 pascal CreateDialogIndirect(word ptr word ptr)
|
|
CreateDialogIndirect(1 2 3 4)
|
|
221 pascal ScrollDC(word s_word s_word ptr ptr word ptr)
|
|
ScrollDC(1 2 3 4 5 6 7)
|
|
227 pascal GetNextDlgGroupItem(word word word) GetNextDlgGroupItem(1 2 3)
|
|
228 pascal GetNextDlgTabItem(word word word) GetNextDlgTabItem(1 2 3)
|
|
229 pascal GetTopWindow(word) GetTopWindow(1)
|
|
230 pascal GetNextWindow(word word) GetNextWindow(1 2)
|
|
232 pascal SetWindowPos(word word word word word word word)
|
|
SetWindowPos(1 2 3 4 5 6 7)
|
|
237 pascal GetUpdateRgn(word word word) GetUpdateRgn(1 2 3)
|
|
239 pascal DialogBoxParam(word ptr word ptr long) DialogBoxParam(1 2 3 4 5)
|
|
240 pascal DialogBoxIndirectParam(word word word ptr long)
|
|
DialogBoxIndirectParam(1 2 3 4 5)
|
|
241 pascal CreateDialogParam(word ptr word ptr long)
|
|
CreateDialogParam(1 2 3 4 5)
|
|
242 pascal CreateDialogIndirectParam(word ptr word ptr long)
|
|
CreateDialogIndirectParam(1 2 3 4 5)
|
|
244 pascal EqualRect(ptr ptr) EqualRect(1 2)
|
|
262 pascal GetWindow(word word) GetWindow(1 2)
|
|
266 pascal SetMessageQueue(word) SetMessageQueue(1)
|
|
277 pascal GetDlgCtrlID(word) GetDlgCtrlID(1)
|
|
286 pascal GetDesktopWindow() GetDesktopWindow()
|
|
288 pascal GetMessageExtraInfo() GetMessageExtraInfo()
|
|
319 pascal ScrollWindowEx(word s_word s_word ptr ptr word ptr word)
|
|
ScrollWindowEx(1 2 3 4 5 6 7 8)
|
|
324 pascal FillWindow(word word word word) FillWindow(1 2 3 4)
|
|
325 pascal PaintRect(word word word word ptr) PaintRect(1 2 3 4 5)
|
|
334 pascal GetQueueStatus(word) GetQueueStatus(1)
|
|
335 pascal GetInputState() GetInputState()
|
|
373 pascal SubtractRect(ptr ptr ptr) SubtractRect(1 2 3)
|
|
403 pascal UnregisterClass(ptr word) UnregisterClass(1 2)
|
|
411 pascal AppendMenu(word word word ptr) AppendMenu(1 2 3 4)
|
|
420 pascal wsprintf(ptr ptr) wsprintf(1 2)
|
|
421 pascal wvsprintf(ptr ptr ptr) wvsprintf(1 2 3)
|
|
430 pascal lstrcmp(ptr ptr) lstrcmp(1 2)
|
|
431 pascal AnsiUpper(ptr) AnsiUpper(1)
|
|
432 pascal AnsiLower(ptr) AnsiLower(1)
|
|
433 pascal IsCharAlpha(byte) IsCharAlpha(1)
|
|
434 pascal IsCharAlphanumeric(byte) IsCharAlphanumeric(1)
|
|
435 pascal IsCharUpper(byte) IsCharUpper(1)
|
|
436 pascal IsCharLower(byte) IsCharLower(1)
|
|
437 pascal AnsiUpperBuff(ptr word) AnsiUpperBuff(1 2)
|
|
438 pascal AnsiLowerBuff(ptr word) AnsiLowerBuff(1 2)
|
|
452 pascal CreateWindowEx(long ptr ptr long s_word s_word s_word s_word
|
|
word word word ptr)
|
|
CreateWindowEx(1 2 3 4 5 6 7 8 9 10 11 12)
|
|
457 pascal DestroyIcon(word) DestroyIcon(1)
|
|
458 pascal DestroyCursor(word) DestroyCursor(1)
|
|
471 pascal lstrcmpi(ptr ptr) lstrcmpi(1 2)
|
|
472 pascal AnsiNext(ptr) AnsiNext(1 )
|
|
473 pascal AnsiPrev(ptr ptr) AnsiPrev(1 2)
|