blob: 5d18ad38c6810f53dee2456598187c8d276a48e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/** BEGIN COPYRIGHT BLOCK
* Copyright 2001 Sun Microsystems, Inc.
* Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
* All rights reserved.
* END COPYRIGHT BLOCK **/
/******************************************************
*
* ntstubs.c - Stubs needed on NT when linking in
* the SSL code. If these stubs were not here, the
* named functions below would not be located at link
* time, because there is no implementation of the
* functions for Win32 in cross-platform libraries.
*
******************************************************/
#if defined( _WIN32 ) && defined ( NET_SSL )
#include <windows.h>
#include <nspr.h>
/*
char* XP_FileName (const char* name, XP_FileType type)
{
return NULL;
}
XP_File XP_FileOpen(const char* name, XP_FileType type,
const XP_FilePerm permissions)
{
return NULL;
}
*/
char *
WH_FileName (const char *name, PRFileType type)
{
return NULL;
}
#endif /* WIN32 && NET_SSL */
|