Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
0a751332
Commit
0a751332
authored
Nov 14, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Nov 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Constify a variable.
parent
00bba190
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dde_misc.c
dlls/user32/dde_misc.c
+1
-1
dde_private.h
dlls/user32/dde_private.h
+1
-1
No files found.
dlls/user32/dde_misc.c
View file @
0a751332
...
...
@@ -864,7 +864,7 @@ ATOM WDML_MakeAtomFromHsz(HSZ hsz)
* Generally used while receiving a global atom and transforming it
* into an HSZ
*/
HSZ
WDML_MakeHszFromAtom
(
WDML_INSTANCE
*
pInstance
,
ATOM
atom
)
HSZ
WDML_MakeHszFromAtom
(
const
WDML_INSTANCE
*
pInstance
,
ATOM
atom
)
{
WCHAR
nameBuffer
[
MAX_BUFFER_LEN
];
...
...
dlls/user32/dde_private.h
View file @
0a751332
...
...
@@ -223,7 +223,7 @@ extern void WDML_FreeAllHSZ(WDML_INSTANCE* pInstance) DECLSPEC_HIDDEN;
extern
BOOL
WDML_DecHSZ
(
WDML_INSTANCE
*
pInstance
,
HSZ
hsz
)
DECLSPEC_HIDDEN
;
extern
BOOL
WDML_IncHSZ
(
WDML_INSTANCE
*
pInstance
,
HSZ
hsz
)
DECLSPEC_HIDDEN
;
extern
ATOM
WDML_MakeAtomFromHsz
(
HSZ
hsz
)
DECLSPEC_HIDDEN
;
extern
HSZ
WDML_MakeHszFromAtom
(
WDML_INSTANCE
*
pInstance
,
ATOM
atom
)
DECLSPEC_HIDDEN
;
extern
HSZ
WDML_MakeHszFromAtom
(
const
WDML_INSTANCE
*
pInstance
,
ATOM
atom
)
DECLSPEC_HIDDEN
;
/* client calls these */
extern
WDML_XACT
*
WDML_AllocTransaction
(
WDML_INSTANCE
*
pInstance
,
UINT
ddeMsg
,
UINT
wFmt
,
HSZ
hszItem
)
DECLSPEC_HIDDEN
;
extern
void
WDML_QueueTransaction
(
WDML_CONV
*
pConv
,
WDML_XACT
*
pXAct
)
DECLSPEC_HIDDEN
;
...
...
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