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
d6fc1164
Commit
d6fc1164
authored
Jan 20, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 22, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Declare some items static.
parent
dc577ed6
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
5 deletions
+2
-5
typelib.c
dlls/oleaut32/typelib.c
+1
-1
typelib.h
dlls/oleaut32/typelib.h
+0
-1
variant.c
dlls/oleaut32/variant.c
+1
-1
variant.h
dlls/oleaut32/variant.h
+0
-2
No files found.
dlls/oleaut32/typelib.c
View file @
d6fc1164
...
...
@@ -1229,7 +1229,7 @@ static void dump_TLBImplType(const TLBImplType * impl)
}
}
void
dump_Variant
(
const
VARIANT
*
pvar
)
static
void
dump_Variant
(
const
VARIANT
*
pvar
)
{
SYSTEMTIME
st
;
...
...
dlls/oleaut32/typelib.h
View file @
d6fc1164
...
...
@@ -599,7 +599,6 @@ WORD typeofarray
HRESULT
ITypeInfoImpl_GetInternalFuncDesc
(
ITypeInfo
*
iface
,
UINT
index
,
const
FUNCDESC
**
ppFuncDesc
);
extern
DWORD
_invoke
(
FARPROC
func
,
CALLCONV
callconv
,
int
nrargs
,
DWORD
*
args
);
extern
void
dump_Variant
(
const
VARIANT
*
pvar
);
HRESULT
TMARSHAL_DllGetClassObject
(
REFCLSID
rclsid
,
REFIID
iid
,
LPVOID
*
ppv
);
...
...
dlls/oleaut32/variant.c
View file @
d6fc1164
...
...
@@ -1465,7 +1465,7 @@ HRESULT WINAPI VarUdateFromDate(DATE dateIn, ULONG dwFlags, UDATE *lpUdate)
TRACE("lcid 0x%x, " #name "=%d '%c'\n", lcid, lpChars->name, lpChars->name)
/* Get the valid number characters for an lcid */
void
VARIANT_GetLocalisedNumberChars
(
VARIANT_NUMBER_CHARS
*
lpChars
,
LCID
lcid
,
DWORD
dwFlags
)
static
void
VARIANT_GetLocalisedNumberChars
(
VARIANT_NUMBER_CHARS
*
lpChars
,
LCID
lcid
,
DWORD
dwFlags
)
{
static
const
VARIANT_NUMBER_CHARS
defaultChars
=
{
'-'
,
'+'
,
'.'
,
','
,
'$'
,
0
,
'.'
,
','
};
LCTYPE
lctype
=
dwFlags
&
LOCALE_NOUSEROVERRIDE
;
...
...
dlls/oleaut32/variant.h
View file @
d6fc1164
...
...
@@ -123,5 +123,3 @@ typedef struct tagVARIANT_NUMBER_CHARS
WCHAR
cCurrencyDecimalPoint
;
WCHAR
cCurrencyDigitSeparator
;
}
VARIANT_NUMBER_CHARS
;
void
VARIANT_GetLocalisedNumberChars
(
VARIANT_NUMBER_CHARS
*
,
LCID
,
DWORD
);
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