repo.or.cz
/
wine
/
gsoc-2012-control.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 961222
[wine/gsoc-2012-control.git]
/
misc
/
mpr.c
blob
62f9f857952fbc79f4706e34a7a094562655b989
1
/* MPR.dll
2
*
3
* Copyright 1996 Marcus Meissner
4
*/
5
6
#include <stdio.h>
7
#include
"win.h"
8
#include
"stddebug.h"
9
#include
"debug.h"
10
11
DWORD
12
WNetGetCachedPassword
(
13
LPSTR pbResource
,
14
WORD cbResource
,
15
LPSTR pbPassword
,
16
LPWORD pcbPassword
,
17
BYTE nType
18
) {
19
fprintf
(
stdnimp
,
"WNetGetCachedPassword(%s,%d,%p,%d,%d)
\n
"
,
20
pbResource
,
cbResource
,
pbPassword
,*
pcbPassword
,
nType
21
);
22
return
0
;
23
}