projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
No longer directly accessing debuggee memory.
[wine]
/
graphics
/
ttydrv
/
clipping.c
1
/*
2
* TTY DC clipping
3
*
4
* Copyright 1999 Patrik Stridvall
5
*/
6
7
#include "dc.h"
8
#include "debugtools.h"
9
#include "ttydrv.h"
10
11
DEFAULT_DEBUG_CHANNEL(ttydrv)
12
13
/***********************************************************************
14
* TTYDRV_DC_SetDeviceClipping
15
*/
16
void TTYDRV_DC_SetDeviceClipping(DC *dc)
17
{
18
TRACE("(%p)\n", dc);
19
}
20
21