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
d8f50798
Commit
d8f50798
authored
Aug 28, 2002
by
Patrik Stridvall
Committed by
Alexandre Julliard
Aug 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement wrapper calls for the 16 bit GlobalAtom* functions.
parent
9c071eae
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
63 additions
and
4 deletions
+63
-4
Makefile.in
dlls/user/Makefile.in
+1
-0
user.exe.spec
dlls/user/user.exe.spec
+4
-4
user16.c
dlls/user/user16.c
+54
-0
winuser16.h
include/wine/winuser16.h
+4
-0
No files found.
dlls/user/Makefile.in
View file @
d8f50798
...
...
@@ -71,6 +71,7 @@ C_SRCS = \
property.c
\
resource.c
\
text.c
\
user16.c
\
user_main.c
\
wnd16.c
\
wsprintf.c
...
...
dlls/user/user.exe.spec
View file @
d8f50798
...
...
@@ -273,10 +273,10 @@ rsrc resources/version16.res
265 pascal16 ShowOwnedPopups(word word) ShowOwnedPopups16
266 pascal16 SetMessageQueue(word) SetMessageQueue16
267 pascal16 ShowScrollBar(word word word) ShowScrollBar16
268 pascal16 GlobalAddAtom(str) GlobalAddAtom
A
269 pascal16 GlobalDeleteAtom(word) GlobalDeleteAtom
270 pascal16 GlobalFindAtom(str) GlobalFindAtom
A
271 pascal16 GlobalGetAtomName(word ptr s_word) GlobalGetAtomName
A
268 pascal16 GlobalAddAtom(str) GlobalAddAtom
16
269 pascal16 GlobalDeleteAtom(word) GlobalDeleteAtom
16
270 pascal16 GlobalFindAtom(str) GlobalFindAtom
16
271 pascal16 GlobalGetAtomName(word ptr s_word) GlobalGetAtomName
16
272 pascal16 IsZoomed(word) IsZoomed16
273 pascal16 ControlPanelInfo(word word str) ControlPanelInfo16
274 stub GetNextQueueWindow
...
...
dlls/user/user16.c
0 → 100644
View file @
d8f50798
/*
* Misc 16-bit USER functions
*
* Copyright 2002 Patrik Stridvall
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "wine/winuser16.h"
#include "winbase.h"
/***********************************************************************
* GlobalAddAtom (USER.268)
*/
ATOM
WINAPI
GlobalAddAtom16
(
LPCSTR
lpString
)
{
return
GlobalAddAtomA
(
lpString
);
}
/***********************************************************************
* GlobalDeleteAtom (USER.269)
*/
ATOM
WINAPI
GlobalDeleteAtom16
(
ATOM
nAtom
)
{
return
GlobalDeleteAtom
(
nAtom
);
}
/***********************************************************************
* GlobalFindAtom (USER.270)
*/
ATOM
WINAPI
GlobalFindAtom16
(
LPCSTR
lpString
)
{
return
GlobalFindAtomA
(
lpString
);
}
/***********************************************************************
* GlobalGetAtomName (USER.271)
*/
UINT16
WINAPI
GlobalGetAtomName16
(
ATOM
nAtom
,
LPSTR
lpBuffer
,
INT16
nSize
)
{
return
GlobalGetAtomNameA
(
nAtom
,
lpBuffer
,
nSize
);
}
include/wine/winuser16.h
View file @
d8f50798
...
...
@@ -796,6 +796,10 @@ HTASK16 WINAPI GetWindowTask16(HWND16);
INT16
WINAPI
GetWindowText16
(
HWND16
,
SEGPTR
,
INT16
);
INT16
WINAPI
GetWindowTextLength16
(
HWND16
);
WORD
WINAPI
GetWindowWord16
(
HWND16
,
INT16
);
ATOM
WINAPI
GlobalAddAtom16
(
LPCSTR
);
ATOM
WINAPI
GlobalDeleteAtom16
(
ATOM
);
ATOM
WINAPI
GlobalFindAtom16
(
LPCSTR
);
UINT16
WINAPI
GlobalGetAtomName16
(
ATOM
,
LPSTR
,
INT16
);
VOID
WINAPI
HideCaret16
(
HWND16
);
BOOL16
WINAPI
HiliteMenuItem16
(
HWND16
,
HMENU16
,
UINT16
,
UINT16
);
DWORD
WINAPI
IconSize16
(
void
);
...
...
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