1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-21 10:43:36 +00:00

Added win-dialog (Enhanced Dialog Box)

This commit is contained in:
Bryan Roe
2022-01-25 15:53:28 -08:00
parent a3161484a7
commit 35036bfd8b
3 changed files with 544 additions and 1 deletions

File diff suppressed because one or more lines are too long

534
modules/win-dialog.js Normal file

File diff suppressed because one or more lines are too long

View File

@@ -42,6 +42,7 @@ function WindowsMessagePump(options)
this._user32.CreateMethod('DefWindowProcW'); this._user32.CreateMethod('DefWindowProcW');
this._user32.CreateMethod('DestroyWindow'); this._user32.CreateMethod('DestroyWindow');
this._user32.CreateMethod('DispatchMessageW'); this._user32.CreateMethod('DispatchMessageW');
this._user32.CreateMethod('DrawTextExW');
this._user32.CreateMethod('EndPaint'); this._user32.CreateMethod('EndPaint');
this._user32.CreateMethod('FillRect'); this._user32.CreateMethod('FillRect');
this._user32.CreateMethod('GetClientRect'); this._user32.CreateMethod('GetClientRect');
@@ -52,6 +53,7 @@ function WindowsMessagePump(options)
this._user32.CreateMethod('RegisterClassExW'); this._user32.CreateMethod('RegisterClassExW');
this._user32.CreateMethod('SendMessageW'); this._user32.CreateMethod('SendMessageW');
this._user32.CreateMethod('SetWindowPos'); this._user32.CreateMethod('SetWindowPos');
this._user32.CreateMethod('SetWindowTextW');
this._user32.CreateMethod('ShowWindow'); this._user32.CreateMethod('ShowWindow');
this._user32.CreateMethod('SystemParametersInfoA'); this._user32.CreateMethod('SystemParametersInfoA');
this._user32.CreateMethod('TranslateMessage'); this._user32.CreateMethod('TranslateMessage');