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
96ff8e26
Commit
96ff8e26
authored
Jan 05, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmime: Declare some functions static.
parent
4fb03d90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
15 deletions
+6
-15
dmutils.c
dlls/dmime/dmutils.c
+6
-6
dmutils.h
dlls/dmime/dmutils.h
+0
-9
No files found.
dlls/dmime/dmutils.c
View file @
96ff8e26
...
...
@@ -242,7 +242,7 @@ const char *debugstr_fourcc (DWORD fourcc) {
}
/* DMUS_VERSION struct to string conversion for debug messages */
const
char
*
debugstr_dmversion
(
LPDMUS_VERSION
version
)
{
static
const
char
*
debugstr_dmversion
(
LPDMUS_VERSION
version
)
{
if
(
!
version
)
return
"'null'"
;
return
wine_dbg_sprintf
(
"
\'
%i,%i,%i,%i
\'
"
,
HIWORD
(
version
->
dwVersionMS
),
LOWORD
(
version
->
dwVersionMS
),
...
...
@@ -269,7 +269,7 @@ static const char *debugstr_month (DWORD dwMonth) {
}
/* FILETIME struct to string conversion for debug messages */
const
char
*
debugstr_filetime
(
LPFILETIME
time
)
{
static
const
char
*
debugstr_filetime
(
LPFILETIME
time
)
{
SYSTEMTIME
sysTime
;
if
(
!
time
)
return
"'null'"
;
...
...
@@ -614,7 +614,7 @@ const char *debugstr_dmreturn (DWORD code) {
/* generic flag-dumping function */
const
char
*
debugstr_flags
(
DWORD
flags
,
const
flag_info
*
names
,
size_t
num_names
){
static
const
char
*
debugstr_flags
(
DWORD
flags
,
const
flag_info
*
names
,
size_t
num_names
){
static
char
buffer
[
128
]
=
""
,
*
ptr
=
&
buffer
[
0
];
unsigned
int
i
,
size
=
sizeof
(
buffer
);
...
...
@@ -632,7 +632,7 @@ const char* debugstr_flags (DWORD flags, const flag_info* names, size_t num_name
}
/* dump DMUS_OBJ flags */
const
char
*
debugstr_DMUS_OBJ_FLAGS
(
DWORD
flagmask
)
{
static
const
char
*
debugstr_DMUS_OBJ_FLAGS
(
DWORD
flagmask
)
{
static
const
flag_info
flags
[]
=
{
FE
(
DMUS_OBJ_OBJECT
),
FE
(
DMUS_OBJ_CLASS
),
...
...
@@ -651,7 +651,7 @@ const char *debugstr_DMUS_OBJ_FLAGS (DWORD flagmask) {
}
/* dump DMUS_CONTAINER flags */
const
char
*
debugstr_DMUS_CONTAINER_FLAGS
(
DWORD
flagmask
)
{
static
const
char
*
debugstr_DMUS_CONTAINER_FLAGS
(
DWORD
flagmask
)
{
static
const
flag_info
flags
[]
=
{
FE
(
DMUS_CONTAINER_NOLOADS
)
};
...
...
@@ -659,7 +659,7 @@ const char *debugstr_DMUS_CONTAINER_FLAGS (DWORD flagmask) {
}
/* dump DMUS_CONTAINED_OBJF flags */
const
char
*
debugstr_DMUS_CONTAINED_OBJF_FLAGS
(
DWORD
flagmask
)
{
static
const
char
*
debugstr_DMUS_CONTAINED_OBJF_FLAGS
(
DWORD
flagmask
)
{
static
const
flag_info
flags
[]
=
{
FE
(
DMUS_CONTAINED_OBJF_KEEP
)
};
...
...
dlls/dmime/dmutils.h
View file @
96ff8e26
...
...
@@ -66,20 +66,11 @@ extern int even_or_odd (DWORD number);
extern
BOOL
IS_VALID_DMFORM
(
FOURCC
chunkID
);
/* FOURCC to string conversion for debug messages */
extern
const
char
*
debugstr_fourcc
(
DWORD
fourcc
);
/* DMUS_VERSION struct to string conversion for debug messages */
extern
const
char
*
debugstr_dmversion
(
LPDMUS_VERSION
version
);
/* FILETIME struct to string conversion for debug messages */
extern
const
char
*
debugstr_filetime
(
LPFILETIME
time
);
/* returns name of given GUID */
extern
const
char
*
debugstr_dmguid
(
const
GUID
*
id
);
/* returns name of given error code */
extern
const
char
*
debugstr_dmreturn
(
DWORD
code
);
/* generic flags-dumping function */
extern
const
char
*
debugstr_flags
(
DWORD
flags
,
const
flag_info
*
names
,
size_t
num_names
);
extern
const
char
*
debugstr_DMUS_OBJ_FLAGS
(
DWORD
flagmask
);
extern
const
char
*
debugstr_DMUS_CONTAINER_FLAGS
(
DWORD
flagmask
);
extern
const
char
*
debugstr_DMUS_CONTAINED_OBJF_FLAGS
(
DWORD
flagmask
);
/* dump whole DMUS_OBJECTDESC struct */
extern
const
char
*
debugstr_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
);
extern
void
debug_DMUS_OBJECTDESC
(
LPDMUS_OBJECTDESC
pDesc
);
...
...
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