Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a2e2e185
Commit
a2e2e185
authored
Feb 12, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid a few more GetModuleHandle calls.
parent
560a7567
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
36 additions
and
48 deletions
+36
-48
edit.c
controls/edit.c
+1
-1
menu.c
controls/menu.c
+1
-2
colordlg16.c
dlls/commdlg/colordlg16.c
+1
-1
filedlg16.c
dlls/commdlg/filedlg16.c
+7
-13
finddlg.c
dlls/commdlg/finddlg.c
+1
-1
fontdlg16.c
dlls/commdlg/fontdlg16.c
+1
-1
wgl.c
dlls/opengl32/wgl.c
+5
-7
user_main.c
dlls/user/user_main.c
+5
-3
winproc.h
dlls/user/winproc.h
+1
-1
user.h
include/user.h
+2
-0
class.c
windows/class.c
+1
-3
cursoricon.c
windows/cursoricon.c
+2
-5
mdi.c
windows/mdi.c
+4
-4
msgbox.c
windows/msgbox.c
+4
-6
No files found.
controls/edit.c
View file @
a2e2e185
...
...
@@ -3688,7 +3688,7 @@ static void EDIT_WM_Command(EDITSTATE *es, INT code, INT id, HWND control)
*/
static
void
EDIT_WM_ContextMenu
(
EDITSTATE
*
es
,
INT
x
,
INT
y
)
{
HMENU
menu
=
LoadMenuA
(
GetModuleHandleA
(
"USER32"
)
,
"EDITMENU"
);
HMENU
menu
=
LoadMenuA
(
user32_module
,
"EDITMENU"
);
HMENU
popup
=
GetSubMenu
(
menu
,
0
);
UINT
start
=
es
->
selection_start
;
UINT
end
=
es
->
selection_end
;
...
...
controls/menu.c
View file @
a2e2e185
...
...
@@ -328,9 +328,8 @@ static HMENU get_win_sys_menu( HWND hwnd )
*/
static
HMENU
MENU_CopySysPopup
(
void
)
{
static
const
WCHAR
user32W
[]
=
{
'U'
,
'S'
,
'E'
,
'R'
,
'3'
,
'2'
,
0
};
static
const
WCHAR
sysmenuW
[]
=
{
'S'
,
'Y'
,
'S'
,
'M'
,
'E'
,
'N'
,
'U'
,
0
};
HMENU
hMenu
=
LoadMenuW
(
GetModuleHandleW
(
user32W
)
,
sysmenuW
);
HMENU
hMenu
=
LoadMenuW
(
user32_module
,
sysmenuW
);
if
(
hMenu
)
{
POPUPMENU
*
menu
=
MENU_GetMenu
(
hMenu
);
...
...
dlls/commdlg/colordlg16.c
View file @
a2e2e185
...
...
@@ -442,7 +442,7 @@ BOOL16 WINAPI ChooseColor16( LPCHOOSECOLOR16 lpChCol )
COMDLG32_SetCommDlgExtendedError
(
CDERR_LOADRESFAILURE
);
return
FALSE
;
}
size
=
SizeofResource
(
GetModuleHandleA
(
"COMDLG32"
)
,
hResInfo
);
size
=
SizeofResource
(
COMDLG32_hInstance
,
hResInfo
);
hGlobal16
=
GlobalAlloc16
(
0
,
size
);
if
(
!
hGlobal16
)
{
...
...
dlls/commdlg/filedlg16.c
View file @
a2e2e185
...
...
@@ -95,18 +95,12 @@ static BOOL FileDlg_Init(void)
static
BOOL
initialized
=
0
;
if
(
!
initialized
)
{
HINSTANCE
inst
=
GetModuleHandleA
(
"comdlg32.dll"
);
if
(
!
inst
)
{
ERR
(
"cannot get comdlg32.dll instance
\n
"
);
return
FALSE
;
}
hFolder
=
LoadImageA
(
inst
,
"FOLDER"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hFolder2
=
LoadImageA
(
inst
,
"FOLDER2"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hFloppy
=
LoadImageA
(
inst
,
"FLOPPY"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hHDisk
=
LoadImageA
(
inst
,
"HDISK"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hCDRom
=
LoadImageA
(
inst
,
"CDROM"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hNet
=
LoadImageA
(
inst
,
"NETWORK"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hFolder
=
LoadImageA
(
COMDLG32_hInstance
,
"FOLDER"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hFolder2
=
LoadImageA
(
COMDLG32_hInstance
,
"FOLDER2"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hFloppy
=
LoadImageA
(
COMDLG32_hInstance
,
"FLOPPY"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hHDisk
=
LoadImageA
(
COMDLG32_hInstance
,
"HDISK"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hCDRom
=
LoadImageA
(
COMDLG32_hInstance
,
"CDROM"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
hNet
=
LoadImageA
(
COMDLG32_hInstance
,
"NETWORK"
,
IMAGE_ICON
,
16
,
16
,
LR_SHARED
);
if
(
hFolder
==
0
||
hFolder2
==
0
||
hFloppy
==
0
||
hHDisk
==
0
||
hCDRom
==
0
||
hNet
==
0
)
{
...
...
@@ -230,7 +224,7 @@ BOOL Get16BitsTemplate(LFSPRIVATE lfs)
COMDLG32_SetCommDlgExtendedError
(
CDERR_LOADRESFAILURE
);
return
FALSE
;
}
size
=
SizeofResource
(
GetModuleHandleA
(
"COMDLG32"
)
,
hResInfo
);
size
=
SizeofResource
(
COMDLG32_hInstance
,
hResInfo
);
hGlobal16
=
GlobalAlloc16
(
0
,
size
);
if
(
!
hGlobal16
)
{
...
...
dlls/commdlg/finddlg.c
View file @
a2e2e185
...
...
@@ -121,7 +121,7 @@ BOOL FINDDLG_Get16BitsTemplate(LFRPRIVATE lfr)
COMDLG32_SetCommDlgExtendedError
(
CDERR_LOADRESFAILURE
);
return
FALSE
;
}
size
=
SizeofResource
(
GetModuleHandleA
(
"COMDLG32"
)
,
hResInfo
);
size
=
SizeofResource
(
COMDLG32_hInstance
,
hResInfo
);
hGlobal16
=
GlobalAlloc16
(
0
,
size
);
if
(
!
hGlobal16
)
{
...
...
dlls/commdlg/fontdlg16.c
View file @
a2e2e185
...
...
@@ -205,7 +205,7 @@ BOOL16 WINAPI ChooseFont16(LPCHOOSEFONT16 lpChFont)
COMDLG32_SetCommDlgExtendedError
(
CDERR_LOADRESFAILURE
);
return
FALSE
;
}
size
=
SizeofResource
(
GetModuleHandleA
(
"COMDLG32"
)
,
hResInfo
);
size
=
SizeofResource
(
COMDLG32_hInstance
,
hResInfo
);
hGlobal16
=
GlobalAlloc16
(
0
,
size
);
if
(
!
hGlobal16
)
{
...
...
dlls/opengl32/wgl.c
View file @
a2e2e185
...
...
@@ -52,6 +52,8 @@ void (*wine_tsx11_unlock_ptr)(void) = NULL;
static
GLXContext
default_cx
=
NULL
;
static
Display
*
default_display
;
/* display to use for default context */
static
HMODULE
opengl32_handle
;
static
void
*
(
*
p_glXGetProcAddressARB
)(
const
GLubyte
*
);
typedef
struct
wine_glcontext
{
...
...
@@ -310,18 +312,13 @@ static int wgl_compar(const void *elt_a, const void *elt_b) {
void
*
WINAPI
wglGetProcAddress
(
LPCSTR
lpszProc
)
{
void
*
local_func
;
static
HMODULE
hm
=
0
;
OpenGL_extension
ext
;
OpenGL_extension
*
ext_ret
;
TRACE
(
"(%s)
\n
"
,
lpszProc
);
if
(
hm
==
0
)
hm
=
GetModuleHandleA
(
"opengl32"
);
/* First, look if it's not already defined in the 'standard' OpenGL functions */
if
((
local_func
=
GetProcAddress
(
hm
,
lpszProc
))
!=
NULL
)
{
if
((
local_func
=
GetProcAddress
(
opengl32_handle
,
lpszProc
))
!=
NULL
)
{
TRACE
(
" found function in 'standard' OpenGL functions (%p)
\n
"
,
local_func
);
return
local_func
;
}
...
...
@@ -397,7 +394,7 @@ void* WINAPI wglGetProcAddress(LPCSTR lpszProc) {
buf
[
strlen
(
ext_ret
->
glx_name
)
-
3
]
=
'\0'
;
TRACE
(
" extension not found in the Linux OpenGL library, checking against libGL bug with %s..
\n
"
,
buf
);
ret
=
GetProcAddress
(
hm
,
buf
);
ret
=
GetProcAddress
(
opengl32_handle
,
buf
);
if
(
ret
!=
NULL
)
{
TRACE
(
" found function in main OpenGL library (%p) !
\n
"
,
ret
);
}
else
{
...
...
@@ -775,6 +772,7 @@ BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
switch
(
reason
)
{
case
DLL_PROCESS_ATTACH
:
opengl32_handle
=
hinst
;
DisableThreadLibraryCalls
(
hinst
);
return
process_attach
();
case
DLL_PROCESS_DETACH
:
...
...
dlls/user/user_main.c
View file @
a2e2e185
...
...
@@ -42,6 +42,7 @@ USER_DRIVER USER_Driver;
WINE_LOOK
TWEAK_WineLook
=
WIN31_LOOK
;
WORD
USER_HeapSel
=
0
;
/* USER heap selector */
HMODULE
user32_module
=
0
;
extern
HPALETTE
(
WINAPI
*
pfnGDISelectPalette
)(
HDC
hdc
,
HPALETTE
hpal
,
WORD
bkgnd
);
extern
UINT
(
WINAPI
*
pfnGDIRealizePalette
)(
HDC
hdc
);
...
...
@@ -183,7 +184,7 @@ static void tweak_init(void)
/***********************************************************************
* USER initialisation routine
*/
static
BOOL
process_attach
(
HINSTANCE
inst
)
static
BOOL
process_attach
(
void
)
{
HINSTANCE16
instance
;
...
...
@@ -207,7 +208,7 @@ static BOOL process_attach( HINSTANCE inst )
palette_init
();
/* Initialize built-in window classes */
CLASS_RegisterBuiltinClasses
(
inst
);
CLASS_RegisterBuiltinClasses
();
/* Initialize menus */
if
(
!
MENU_Init
())
return
FALSE
;
...
...
@@ -268,7 +269,8 @@ BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
switch
(
reason
)
{
case
DLL_PROCESS_ATTACH
:
ret
=
process_attach
(
inst
);
user32_module
=
inst
;
ret
=
process_attach
();
break
;
case
DLL_THREAD_DETACH
:
thread_detach
();
...
...
dlls/user/winproc.h
View file @
a2e2e185
...
...
@@ -138,7 +138,7 @@ inline static void unmap_str_16_to_32W( LPCWSTR str )
/* Class functions */
struct
tagCLASS
;
/* opaque structure */
struct
tagWND
;
extern
void
CLASS_RegisterBuiltinClasses
(
HINSTANCE
inst
);
extern
void
CLASS_RegisterBuiltinClasses
(
void
);
extern
void
CLASS_AddWindow
(
struct
tagCLASS
*
class
,
struct
tagWND
*
win
,
WINDOWPROCTYPE
type
);
extern
void
CLASS_FreeModuleClasses
(
HMODULE16
hModule
);
...
...
include/user.h
View file @
a2e2e185
...
...
@@ -127,6 +127,8 @@ typedef struct tagUSER_DRIVER {
extern
USER_DRIVER
USER_Driver
;
extern
HMODULE
user32_module
;
/* user lock */
extern
void
USER_Lock
(
void
);
extern
void
USER_Unlock
(
void
);
...
...
windows/class.c
View file @
a2e2e185
...
...
@@ -68,7 +68,6 @@ typedef struct tagCLASS
static
struct
list
class_list
=
LIST_INIT
(
class_list
);
static
CLASS
*
desktop_class
;
static
HMODULE
user32_module
;
#define CLASS_OTHER_PROCESS ((CLASS *)1)
...
...
@@ -471,7 +470,7 @@ static CLASS *register_builtin( const struct builtin_class_descr *descr )
/***********************************************************************
* CLASS_RegisterBuiltinClasses
*/
void
CLASS_RegisterBuiltinClasses
(
HMODULE
user32
)
void
CLASS_RegisterBuiltinClasses
(
void
)
{
extern
const
struct
builtin_class_descr
BUTTON_builtin_class
;
extern
const
struct
builtin_class_descr
COMBO_builtin_class
;
...
...
@@ -486,7 +485,6 @@ void CLASS_RegisterBuiltinClasses( HMODULE user32 )
extern
const
struct
builtin_class_descr
SCROLL_builtin_class
;
extern
const
struct
builtin_class_descr
STATIC_builtin_class
;
user32_module
=
user32
;
desktop_class
=
register_builtin
(
&
DESKTOP_builtin_class
);
register_builtin
(
&
BUTTON_builtin_class
);
register_builtin
(
&
COMBO_builtin_class
);
...
...
windows/cursoricon.c
View file @
a2e2e185
...
...
@@ -814,10 +814,7 @@ static HICON CURSORICON_Load(HINSTANCE hInstance, LPCWSTR name,
WORD
wResId
;
DWORD
dwBytesInRes
;
if
(
!
hInstance
)
/* Load OEM cursor/icon */
{
if
(
!
(
hInstance
=
GetModuleHandleA
(
"user32.dll"
)))
return
0
;
}
if
(
!
hInstance
)
hInstance
=
user32_module
;
/* Load OEM cursor/icon */
/* Normalize hInstance (must be uniquely represented for icon cache) */
...
...
@@ -1996,7 +1993,7 @@ static HBITMAP BITMAP_Load( HINSTANCE instance,LPCWSTR name, UINT loadflags )
{
/* OEM bitmap: try to load the resource from user32.dll */
if
(
HIWORD
(
name
))
return
0
;
i
f
(
!
(
instance
=
GetModuleHandleA
(
"user32.dll"
)))
return
0
;
i
nstance
=
user32_module
;
}
if
(
!
(
hRsrc
=
FindResourceW
(
instance
,
name
,
(
LPWSTR
)
RT_BITMAP
)))
return
0
;
if
(
!
(
handle
=
LoadResource
(
instance
,
hRsrc
)))
return
0
;
...
...
windows/mdi.c
View file @
a2e2e185
...
...
@@ -397,7 +397,7 @@ static LRESULT MDI_RefreshMenu(MDICLIENTINFO *ci)
if
(
visible
==
MDI_MOREWINDOWSLIMIT
)
{
LoadStringW
(
GetModuleHandleA
(
"USER32"
)
,
IDS_MDI_MOREWINDOWS
,
buf
,
sizeof
(
buf
)
/
sizeof
(
WCHAR
));
LoadStringW
(
user32_module
,
IDS_MDI_MOREWINDOWS
,
buf
,
sizeof
(
buf
)
/
sizeof
(
WCHAR
));
AppendMenuW
(
ci
->
hWindowMenu
,
MF_STRING
,
id
,
buf
);
break
;
}
...
...
@@ -1917,12 +1917,12 @@ static HWND MDI_MoreWindowsDialog(HWND hwnd)
HRSRC
hRes
;
HANDLE
hDlgTmpl
;
hRes
=
FindResourceA
(
GetModuleHandleA
(
"USER32"
)
,
"MDI_MOREWINDOWS"
,
(
LPSTR
)
RT_DIALOG
);
hRes
=
FindResourceA
(
user32_module
,
"MDI_MOREWINDOWS"
,
(
LPSTR
)
RT_DIALOG
);
if
(
hRes
==
0
)
return
0
;
hDlgTmpl
=
LoadResource
(
GetModuleHandleA
(
"USER32"
)
,
hRes
);
hDlgTmpl
=
LoadResource
(
user32_module
,
hRes
);
if
(
hDlgTmpl
==
0
)
return
0
;
...
...
@@ -1932,7 +1932,7 @@ static HWND MDI_MoreWindowsDialog(HWND hwnd)
if
(
template
==
0
)
return
0
;
return
(
HWND
)
DialogBoxIndirectParamA
(
GetModuleHandleA
(
"USER32"
)
,
return
(
HWND
)
DialogBoxIndirectParamA
(
user32_module
,
(
LPDLGTEMPLATEA
)
template
,
hwnd
,
MDI_MoreWindowsDlgProc
,
(
LPARAM
)
hwnd
);
}
windows/msgbox.c
View file @
a2e2e185
...
...
@@ -72,7 +72,7 @@ static HFONT MSGBOX_OnInit(HWND hwnd, LPMSGBOXPARAMSW lpmb)
}
else
{
if
(
LoadStringW
(
GetModuleHandleA
(
"user32.dll"
)
,
IDS_ERROR
,
buf
,
256
))
if
(
LoadStringW
(
user32_module
,
IDS_ERROR
,
buf
,
256
))
SetWindowTextW
(
hwnd
,
buf
);
}
}
...
...
@@ -443,14 +443,12 @@ INT WINAPI MessageBoxIndirectW( LPMSGBOXPARAMSW msgbox )
{
LPVOID
tmplate
;
HRSRC
hRes
;
HMODULE
hUser32
;
static
const
WCHAR
user32_res_nameW
[]
=
{
'u'
,
's'
,
'e'
,
'r'
,
'3'
,
'2'
,
'.'
,
'd'
,
'l'
,
'l'
,
0
};
static
const
WCHAR
msg_box_res_nameW
[]
=
{
'M'
,
'S'
,
'G'
,
'B'
,
'O'
,
'X'
,
0
};
hUser32
=
GetModuleHandleW
(
user32_res_nameW
);
if
(
!
(
hRes
=
FindResourceExW
(
hUser32
,
(
LPWSTR
)
RT_DIALOG
,
msg_box_res_nameW
,
msgbox
->
dwLanguageId
)))
if
(
!
(
hRes
=
FindResourceExW
(
user32_module
,
(
LPWSTR
)
RT_DIALOG
,
msg_box_res_nameW
,
msgbox
->
dwLanguageId
)))
return
0
;
if
(
!
(
tmplate
=
(
LPVOID
)
LoadResource
(
hUser32
,
hRes
)))
if
(
!
(
tmplate
=
(
LPVOID
)
LoadResource
(
user32_module
,
hRes
)))
return
0
;
return
DialogBoxIndirectParamW
(
msgbox
->
hInstance
,
tmplate
,
msgbox
->
hwndOwner
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment