repo.or.cz
/
wine
/
multimedia.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 940912
[wine/multimedia.git]
/
misc
/
escape.c
blob
a4f6a6f0205759e2926dc3f609ab78f0f1ecb38f
1
/*
2
* Escape() function.
3
*
4
* Copyright 1994 Bob Amstadt
5
*/
6
7
static char
Copyright
[] =
"Copyright Bob Amstadt, 1994"
;
8
9
#include <stdlib.h>
10
#include <stdio.h>
11
#include
"windows.h"
12
13
int
Escape
(
HDC hdc
,
int
nEscape
,
int
cbInput
,
14
LPSTR lpszInData
,
LPSTR lpvOutData
)
15
{
16
fprintf
(
stderr
,
"Escape(nEscape = %04x)
\n
"
,
nEscape
);
17
return
0
;
18
}