Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
935677ab
Commit
935677ab
authored
Feb 12, 2001
by
Jon Griffiths
Committed by
Alexandre Julliard
Feb 12, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement LHashValOfNameSysA for 4 LCIDs, fix prototype.
parent
ea1ea06f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
26 deletions
+2
-26
Makefile.in
dlls/oleaut32/Makefile.in
+1
-0
hash.c
dlls/oleaut32/hash.c
+0
-0
stubs.c
dlls/oleaut32/stubs.c
+0
-25
oleauto.h
include/oleauto.h
+1
-1
No files found.
dlls/oleaut32/Makefile.in
View file @
935677ab
...
...
@@ -12,6 +12,7 @@ SYMBOLFILE = $(MODULE).tmp.o
C_SRCS
=
\
connpt.c
\
dispatch.c
\
hash.c
\
ole2disp.c
\
oleaut.c
\
olefont.c
\
...
...
dlls/oleaut32/hash.c
0 → 100644
View file @
935677ab
This diff is collapsed.
Click to expand it.
dlls/oleaut32/stubs.c
View file @
935677ab
...
...
@@ -49,28 +49,3 @@ HRESULT WINAPI OleCreatePropertyFrame(
return
S_OK
;
}
/***********************************************************************
* LHashValOfNameSysA
*/
ULONG
WINAPI
LHashValOfNameSysA
(
SYSKIND
skind
,
LCID
lcid
,
LPCSTR
str
)
{
/* returns a 16 bit hashvalue (depending on skind and lcid) in the
* lowword and a unique id made from skind and lcid in bits 23-16
*/
FIXME
(
"(%d,%x,%s), stub, returning 0x424242!
\n
"
,
skind
,(
int
)
lcid
,
debugstr_a
(
str
));
return
0x00424242
;
}
/***********************************************************************
* LHashValOfNameSys
*/
ULONG
WINAPI
LHashValOfNameSys
(
SYSKIND
skind
,
LCID
lcid
,
LPCOLESTR
str
)
{
LPSTR
strA
;
ULONG
res
;
if
(
!
str
)
return
0
;
strA
=
HEAP_strdupWtoA
(
GetProcessHeap
(),
0
,
str
);
res
=
LHashValOfNameSysA
(
skind
,
lcid
,
strA
);
HeapFree
(
GetProcessHeap
(),
0
,
strA
);
return
res
;
}
include/oleauto.h
View file @
935677ab
...
...
@@ -547,7 +547,7 @@ typedef enum tagREGKIND
INT
WINAPI
DosDateTimeToVariantTime
(
USHORT
,
USHORT
,
DATE
*
);
ULONG
WINAPI
LHashValOfNameSysA
(
SYSKIND
syskind
,
LCID
lcid
,
LPCSTR
*
szName
);
ULONG
WINAPI
LHashValOfNameSysA
(
SYSKIND
syskind
,
LCID
lcid
,
LPCSTR
szName
);
ULONG
WINAPI
LHashValOfNameSys
(
SYSKIND
syskind
,
LCID
lcid
,
LPCOLESTR
szName
);
HRESULT
WINAPI
DispGetParam
(
DISPPARAMS
*
pdispparams
,
UINT
position
,
...
...
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