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
014dccc7
Commit
014dccc7
authored
Mar 12, 2000
by
Dimitrie Paun
Committed by
Alexandre Julliard
Mar 12, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned up debug channels a bit.
parent
87a2cc13
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
17 deletions
+12
-17
security.c
dlls/advapi32/security.c
+3
-4
avifile.c
dlls/avifil32/avifile.c
+8
-10
debugdefs.h
include/debugdefs.h
+1
-3
No files found.
dlls/advapi32/security.c
View file @
014dccc7
...
...
@@ -12,8 +12,7 @@
#include "debugtools.h"
#include "winversion.h"
DEFAULT_DEBUG_CHANNEL
(
advapi
)
DECLARE_DEBUG_CHANNEL
(
security
)
DEFAULT_DEBUG_CHANNEL
(
advapi
);
#define CallWin32ToNt(func) \
{ NTSTATUS ret; \
...
...
@@ -572,7 +571,7 @@ LookupAccountSidA(
{
char
*
ac
=
"Administrator"
;
char
*
dm
=
"DOMAIN"
;
FIXME
_
(
security
)
(
"(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub
\n
"
,
FIXME
(
"(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub
\n
"
,
debugstr_a
(
system
),
sid
,
account
,
accountSize
,
accountSize
?*
accountSize
:
0
,
domain
,
domainSize
,
domainSize
?*
domainSize
:
0
,
...
...
@@ -614,7 +613,7 @@ LookupAccountSidW(
{
char
*
ac
=
"Administrator"
;
char
*
dm
=
"DOMAIN"
;
FIXME
_
(
security
)
(
"(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub
\n
"
,
FIXME
(
"(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub
\n
"
,
debugstr_w
(
system
),
sid
,
account
,
accountSize
,
accountSize
?*
accountSize
:
0
,
domain
,
domainSize
,
domainSize
?*
domainSize
:
0
,
...
...
dlls/avifil32/avifile.c
View file @
014dccc7
...
...
@@ -13,9 +13,7 @@
#include "winerror.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL
(
avifile
)
DECLARE_DEBUG_CHANNEL
(
msvideo
)
DECLARE_DEBUG_CHANNEL
(
relay
)
DEFAULT_DEBUG_CHANNEL
(
avifile
);
static
HRESULT
WINAPI
IAVIFile_fnQueryInterface
(
IAVIFile
*
iface
,
REFIID
refiid
,
LPVOID
*
obj
);
static
ULONG
WINAPI
IAVIFile_fnAddRef
(
IAVIFile
*
iface
);
...
...
@@ -116,7 +114,7 @@ typedef struct IAVIFileImpl {
static
HRESULT
WINAPI
IAVIFile_fnQueryInterface
(
IAVIFile
*
iface
,
REFIID
refiid
,
LPVOID
*
obj
)
{
ICOM_THIS
(
IAVIFileImpl
,
iface
);
TRACE
_
(
relay
)
(
"(%p)->QueryInterface(%s,%p)
\n
"
,
This
,
debugstr_guid
(
refiid
),
obj
);
TRACE
(
"(%p)->QueryInterface(%s,%p)
\n
"
,
This
,
debugstr_guid
(
refiid
),
obj
);
if
(
!
memcmp
(
&
IID_IUnknown
,
refiid
,
sizeof
(
IID_IUnknown
))
||
!
memcmp
(
&
IID_IAVIFile
,
refiid
,
sizeof
(
IID_IAVIFile
))
)
{
...
...
@@ -129,14 +127,14 @@ static HRESULT WINAPI IAVIFile_fnQueryInterface(IAVIFile* iface,REFIID refiid,LP
static
ULONG
WINAPI
IAVIFile_fnAddRef
(
IAVIFile
*
iface
)
{
ICOM_THIS
(
IAVIFileImpl
,
iface
);
FIXME
_
(
relay
)
(
"(%p)->AddRef()
\n
"
,
iface
);
FIXME
(
"(%p)->AddRef()
\n
"
,
iface
);
return
++
(
This
->
ref
);
}
static
ULONG
WINAPI
IAVIFile_fnRelease
(
IAVIFile
*
iface
)
{
ICOM_THIS
(
IAVIFileImpl
,
iface
);
FIXME
_
(
relay
)
(
"(%p)->Release()
\n
"
,
iface
);
FIXME
(
"(%p)->Release()
\n
"
,
iface
);
if
(
!--
(
This
->
ref
))
{
HeapFree
(
GetProcessHeap
(),
0
,
iface
);
return
0
;
...
...
@@ -220,7 +218,7 @@ HRESULT WINAPI AVIFileOpenA(
static
HRESULT
WINAPI
IAVIStream_fnQueryInterface
(
IAVIStream
*
iface
,
REFIID
refiid
,
LPVOID
*
obj
)
{
ICOM_THIS
(
IAVIStreamImpl
,
iface
);
TRACE
_
(
relay
)
(
"(%p)->QueryInterface(%s,%p)
\n
"
,
This
,
debugstr_guid
(
refiid
),
obj
);
TRACE
(
"(%p)->QueryInterface(%s,%p)
\n
"
,
This
,
debugstr_guid
(
refiid
),
obj
);
if
(
!
memcmp
(
&
IID_IUnknown
,
refiid
,
sizeof
(
IID_IUnknown
))
||
!
memcmp
(
&
IID_IAVIStream
,
refiid
,
sizeof
(
IID_IAVIStream
))
)
{
...
...
@@ -234,14 +232,14 @@ static HRESULT WINAPI IAVIStream_fnQueryInterface(IAVIStream*iface,REFIID refiid
static
ULONG
WINAPI
IAVIStream_fnAddRef
(
IAVIStream
*
iface
)
{
ICOM_THIS
(
IAVIStreamImpl
,
iface
);
FIXME
_
(
relay
)
(
"(%p)->AddRef()
\n
"
,
iface
);
FIXME
(
"(%p)->AddRef()
\n
"
,
iface
);
return
++
(
This
->
ref
);
}
static
ULONG
WINAPI
IAVIStream_fnRelease
(
IAVIStream
*
iface
)
{
ICOM_THIS
(
IAVIStreamImpl
,
iface
);
FIXME
_
(
relay
)
(
"(%p)->Release()
\n
"
,
iface
);
FIXME
(
"(%p)->Release()
\n
"
,
iface
);
if
(
!--
(
This
->
ref
))
{
HeapFree
(
GetProcessHeap
(),
0
,
This
);
return
0
;
...
...
@@ -500,7 +498,7 @@ ULONG WINAPI AVIStreamRelease(PAVISTREAM iface) {
}
PGETFRAME
WINAPI
AVIStreamGetFrameOpen
(
PAVISTREAM
iface
,
LPBITMAPINFOHEADER
bmi
)
{
FIXME
_
(
msvideo
)
(
"(%p)->(%p),stub!
\n
"
,
iface
,
bmi
);
FIXME
(
"(%p)->(%p),stub!
\n
"
,
iface
,
bmi
);
return
NULL
;
}
...
...
include/debugdefs.h
View file @
014dccc7
...
...
@@ -122,7 +122,6 @@ char dbch_region[] = "\003region";
char
dbch_relay
[]
=
"
\003
relay"
;
char
dbch_resource
[]
=
"
\003
resource"
;
char
dbch_scroll
[]
=
"
\003
scroll"
;
char
dbch_security
[]
=
"
\003
security"
;
char
dbch_segment
[]
=
"
\003
segment"
;
char
dbch_seh
[]
=
"
\003
seh"
;
char
dbch_selector
[]
=
"
\003
selector"
;
...
...
@@ -171,7 +170,7 @@ char dbch_wnet[] = "\003wnet";
char
dbch_x11
[]
=
"
\003
x11"
;
char
dbch_x11drv
[]
=
"
\003
x11drv"
;
#define DEBUG_CHANNEL_COUNT 16
4
#define DEBUG_CHANNEL_COUNT 16
3
static
char
*
const
debug_channels
[
DEBUG_CHANNEL_COUNT
]
=
{
dbch_accel
,
...
...
@@ -290,7 +289,6 @@ static char * const debug_channels[DEBUG_CHANNEL_COUNT] = {
dbch_relay
,
dbch_resource
,
dbch_scroll
,
dbch_security
,
dbch_segment
,
dbch_seh
,
dbch_selector
,
...
...
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