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
545aefa1
Commit
545aefa1
authored
Jun 29, 2005
by
Robert Shearman
Committed by
Alexandre Julliard
Jun 29, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename OLEAUT32_Dll* Functions to Dll*.
parent
cbc3af8c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
oleaut.c
dlls/oleaut32/oleaut.c
+2
-2
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+4
-4
regsvr.c
dlls/oleaut32/regsvr.c
+2
-2
No files found.
dlls/oleaut32/oleaut.c
View file @
545aefa1
...
...
@@ -667,7 +667,7 @@ extern void _get_STDPIC_CF(LPVOID);
/***********************************************************************
* DllGetClassObject (OLEAUT32.1)
*/
HRESULT
WINAPI
OLEAUT32_
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
HRESULT
WINAPI
DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
)
{
*
ppv
=
NULL
;
if
(
IsEqualGUID
(
rclsid
,
&
CLSID_StdFont
))
{
...
...
@@ -707,7 +707,7 @@ HRESULT WINAPI OLEAUT32_DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *p
* RETURNS
* Always returns S_FALSE. This dll cannot be unloaded.
*/
HRESULT
WINAPI
OLEAUT32_
DllCanUnloadNow
(
void
)
HRESULT
WINAPI
DllCanUnloadNow
(
void
)
{
return
S_FALSE
;
}
...
...
dlls/oleaut32/oleaut32.spec
View file @
545aefa1
1 stdcall -private DllGetClassObject(ptr ptr ptr)
OLEAUT32_DllGetClassObject
1 stdcall -private DllGetClassObject(ptr ptr ptr)
2 stdcall SysAllocString(wstr)
3 stdcall SysReAllocString(ptr wstr)
4 stdcall SysAllocStringLen(wstr long)
...
...
@@ -312,8 +312,8 @@
317 stdcall VarR8Round(double long ptr)
318 stdcall VarCat(ptr ptr ptr)
319 stdcall VarDateFromUdateEx(ptr long long ptr)
320 stdcall -private DllRegisterServer()
OLEAUT32_DllRegisterServer
321 stdcall -private DllUnregisterServer()
OLEAUT32_DllUnregisterServer
320 stdcall -private DllRegisterServer()
321 stdcall -private DllUnregisterServer()
322 stdcall GetRecordInfoFromGuids(ptr long long long ptr ptr)
323 stdcall GetRecordInfoFromTypeInfo(ptr ptr)
325 stub SetVarConversionLocaleSetting
...
...
@@ -382,7 +382,7 @@
399 stub UserMSG_free_local
401 stdcall OleLoadPictureEx(ptr long long long long long long ptr)
402 stub OleLoadPictureFileEx
410 stdcall -private DllCanUnloadNow()
OLEAUT32_DllCanUnloadNow
410 stdcall -private DllCanUnloadNow()
411 stdcall SafeArrayCreateVector(long long long)
412 stdcall SafeArrayCopyData(ptr ptr)
413 stdcall VectorFromBstr(ptr ptr)
...
...
dlls/oleaut32/regsvr.c
View file @
545aefa1
...
...
@@ -903,7 +903,7 @@ static struct regsvr_interface const interface_list[] = {
/***********************************************************************
* DllRegisterServer (OLEAUT32.320)
*/
HRESULT
WINAPI
OLEAUT32_DllRegisterServer
(
)
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
HRESULT
hr
;
...
...
@@ -918,7 +918,7 @@ HRESULT WINAPI OLEAUT32_DllRegisterServer()
/***********************************************************************
* DllUnregisterServer (OLEAUT32.321)
*/
HRESULT
WINAPI
OLEAUT32_DllUnregisterServer
(
)
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
HRESULT
hr
;
...
...
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