2003-11-14 16:48:57 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 1992 by Rich Murphey <Rich@Rice.edu>
|
|
|
|
|
* Copyright 1993 by David Wexelblat <dwex@goblin.org>
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
2014-10-31 09:45:12 +10:00
|
|
|
* documentation, and that the names of Rich Murphey and David Wexelblat
|
|
|
|
|
* not be used in advertising or publicity pertaining to distribution of
|
2003-11-14 16:48:57 +00:00
|
|
|
* the software without specific, written prior permission. Rich Murphey and
|
2014-10-31 09:45:12 +10:00
|
|
|
* David Wexelblat make no representations about the suitability of this
|
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
2003-11-14 16:48:57 +00:00
|
|
|
* implied warranty.
|
|
|
|
|
*
|
2014-10-31 09:45:12 +10:00
|
|
|
* RICH MURPHEY AND DAVID WEXELBLAT DISCLAIM ALL WARRANTIES WITH REGARD TO
|
|
|
|
|
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL RICH MURPHEY OR DAVID WEXELBLAT BE LIABLE FOR
|
|
|
|
|
* ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
|
|
|
|
|
* CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
2003-11-14 16:48:57 +00:00
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2005-07-03 07:02:09 +00:00
|
|
|
#ifdef HAVE_XORG_CONFIG_H
|
|
|
|
|
#include <xorg-config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-20 12:25:48 +00:00
|
|
|
#include <X11/X.h>
|
2003-11-14 16:48:57 +00:00
|
|
|
#include "xf86.h"
|
|
|
|
|
#include "xf86Priv.h"
|
2005-10-03 16:46:14 +00:00
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <sys/mman.h>
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#include "xf86_OSlib.h"
|
|
|
|
|
#include "xf86OSpriv.h"
|
|
|
|
|
|
|
|
|
|
#if defined(__NetBSD__) && !defined(MAP_FILE)
|
|
|
|
|
#define MAP_FLAGS MAP_SHARED
|
|
|
|
|
#else
|
|
|
|
|
#define MAP_FLAGS (MAP_FILE | MAP_SHARED)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __OpenBSD__
|
|
|
|
|
#define SYSCTL_MSG "\tCheck that you have set 'machdep.allowaperture=1'\n"\
|
|
|
|
|
"\tin /etc/sysctl.conf and reboot your machine\n" \
|
2004-07-24 16:32:39 +00:00
|
|
|
"\trefer to xf86(4) for details"
|
2003-11-14 16:48:57 +00:00
|
|
|
#define SYSCTL_MSG2 \
|
|
|
|
|
"Check that you have set 'machdep.allowaperture=2'\n" \
|
|
|
|
|
"\tin /etc/sysctl.conf and reboot your machine\n" \
|
2004-07-24 16:32:39 +00:00
|
|
|
"\trefer to xf86(4) for details"
|
2003-11-14 16:48:57 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
/* Video Memory Mapping section */
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
static Bool useDevMem = FALSE;
|
2012-03-21 12:55:09 -07:00
|
|
|
static int devMemFd = -1;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#ifdef HAS_APERTURE_DRV
|
|
|
|
|
#define DEV_APERTURE "/dev/xf86"
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Check if /dev/mem can be mmap'd. If it can't print a warning when
|
|
|
|
|
* "warn" is TRUE.
|
|
|
|
|
*/
|
|
|
|
|
static void
|
|
|
|
|
checkDevMem(Bool warn)
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
static Bool devMemChecked = FALSE;
|
|
|
|
|
int fd;
|
2013-12-15 01:05:51 -08:00
|
|
|
void *base;
|
2012-03-21 12:55:09 -07:00
|
|
|
|
|
|
|
|
if (devMemChecked)
|
|
|
|
|
return;
|
|
|
|
|
devMemChecked = TRUE;
|
|
|
|
|
|
|
|
|
|
if ((fd = open(DEV_MEM, O_RDWR)) >= 0) {
|
|
|
|
|
/* Try to map a page at the VGA address */
|
|
|
|
|
base = mmap((caddr_t) 0, 4096, PROT_READ | PROT_WRITE,
|
|
|
|
|
MAP_FLAGS, fd, (off_t) 0xA0000);
|
|
|
|
|
|
|
|
|
|
if (base != MAP_FAILED) {
|
|
|
|
|
munmap((caddr_t) base, 4096);
|
|
|
|
|
devMemFd = fd;
|
|
|
|
|
useDevMem = TRUE;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
/* This should not happen */
|
|
|
|
|
if (warn) {
|
|
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to mmap %s (%s)\n",
|
|
|
|
|
DEV_MEM, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
useDevMem = FALSE;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-11-14 16:48:57 +00:00
|
|
|
#ifndef HAS_APERTURE_DRV
|
2012-03-21 12:55:09 -07:00
|
|
|
if (warn) {
|
|
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to open %s (%s)\n",
|
|
|
|
|
DEV_MEM, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
useDevMem = FALSE;
|
|
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
#else
|
2012-03-21 12:55:09 -07:00
|
|
|
/* Failed to open /dev/mem, try the aperture driver */
|
|
|
|
|
if ((fd = open(DEV_APERTURE, O_RDWR)) >= 0) {
|
|
|
|
|
/* Try to map a page at the VGA address */
|
|
|
|
|
base = mmap((caddr_t) 0, 4096, PROT_READ | PROT_WRITE,
|
|
|
|
|
MAP_FLAGS, fd, (off_t) 0xA0000);
|
|
|
|
|
|
|
|
|
|
if (base != MAP_FAILED) {
|
|
|
|
|
munmap((caddr_t) base, 4096);
|
|
|
|
|
devMemFd = fd;
|
|
|
|
|
useDevMem = TRUE;
|
|
|
|
|
xf86Msg(X_INFO, "checkDevMem: using aperture driver %s\n",
|
|
|
|
|
DEV_APERTURE);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
|
|
if (warn) {
|
|
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to mmap %s (%s)\n",
|
|
|
|
|
DEV_APERTURE, strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (warn) {
|
2003-11-14 16:48:57 +00:00
|
|
|
#ifndef __OpenBSD__
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to open %s and %s\n"
|
|
|
|
|
"\t(%s)\n", DEV_MEM, DEV_APERTURE, strerror(errno));
|
|
|
|
|
#else /* __OpenBSD__ */
|
|
|
|
|
xf86Msg(X_WARNING, "checkDevMem: failed to open %s and %s\n"
|
|
|
|
|
"\t(%s)\n%s", DEV_MEM, DEV_APERTURE, strerror(errno),
|
|
|
|
|
SYSCTL_MSG);
|
|
|
|
|
#endif /* __OpenBSD__ */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
useDevMem = FALSE;
|
|
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
xf86OSInitVidMem(VidMemInfoPtr pVidMem)
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
checkDevMem(TRUE);
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2014-05-02 12:39:01 -04:00
|
|
|
pci_system_init_dev_mem(devMemFd);
|
2008-03-12 21:45:37 +01:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
pVidMem->initialised = TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef USE_I386_IOPL
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
/* I/O Permissions section */
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
static Bool ExtendedEnabled = FALSE;
|
|
|
|
|
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
Bool
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86EnableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (ExtendedEnabled)
|
|
|
|
|
return TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
if (i386_iopl(TRUE) < 0) {
|
2003-11-14 16:48:57 +00:00
|
|
|
#ifndef __OpenBSD__
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86Msg(X_WARNING, "%s: Failed to set IOPL for extended I/O",
|
|
|
|
|
"xf86EnableIO");
|
2003-11-14 16:48:57 +00:00
|
|
|
#else
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86Msg(X_WARNING, "%s: Failed to set IOPL for extended I/O\n%s",
|
|
|
|
|
"xf86EnableIO", SYSCTL_MSG);
|
2003-11-14 16:48:57 +00:00
|
|
|
#endif
|
2012-03-21 12:55:09 -07:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
ExtendedEnabled = TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
return TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
2012-03-21 12:55:09 -07:00
|
|
|
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
void
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86DisableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (!ExtendedEnabled)
|
|
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
i386_iopl(FALSE);
|
|
|
|
|
ExtendedEnabled = FALSE;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
#endif /* USE_I386_IOPL */
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2004-07-24 16:32:39 +00:00
|
|
|
#ifdef USE_AMD64_IOPL
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
/* I/O Permissions section */
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
|
static Bool ExtendedEnabled = FALSE;
|
|
|
|
|
|
2005-01-28 16:13:00 +00:00
|
|
|
Bool
|
2004-07-24 16:32:39 +00:00
|
|
|
xf86EnableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (ExtendedEnabled)
|
|
|
|
|
return TRUE;
|
2004-07-24 16:32:39 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
if (amd64_iopl(TRUE) < 0) {
|
2004-07-24 16:32:39 +00:00
|
|
|
#ifndef __OpenBSD__
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86Msg(X_WARNING, "%s: Failed to set IOPL for extended I/O",
|
|
|
|
|
"xf86EnableIO");
|
2004-07-24 16:32:39 +00:00
|
|
|
#else
|
2012-03-21 12:55:09 -07:00
|
|
|
xf86Msg(X_WARNING, "%s: Failed to set IOPL for extended I/O\n%s",
|
|
|
|
|
"xf86EnableIO", SYSCTL_MSG);
|
2004-07-24 16:32:39 +00:00
|
|
|
#endif
|
2012-03-21 12:55:09 -07:00
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
ExtendedEnabled = TRUE;
|
2004-07-24 16:32:39 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
return TRUE;
|
2004-07-24 16:32:39 +00:00
|
|
|
}
|
2012-03-21 12:55:09 -07:00
|
|
|
|
2004-07-24 16:32:39 +00:00
|
|
|
void
|
|
|
|
|
xf86DisableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (!ExtendedEnabled)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (amd64_iopl(FALSE) == 0) {
|
|
|
|
|
ExtendedEnabled = FALSE;
|
|
|
|
|
}
|
2014-10-31 09:45:12 +10:00
|
|
|
/* Otherwise, the X server has revoqued its root uid,
|
2012-03-21 12:55:09 -07:00
|
|
|
and thus cannot give up IO privileges any more */
|
|
|
|
|
|
|
|
|
|
return;
|
2004-07-24 16:32:39 +00:00
|
|
|
}
|
|
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
#endif /* USE_AMD64_IOPL */
|
2004-07-24 16:32:39 +00:00
|
|
|
|
2003-11-14 16:48:57 +00:00
|
|
|
#ifdef USE_DEV_IO
|
|
|
|
|
static int IoFd = -1;
|
|
|
|
|
|
2005-01-28 16:13:00 +00:00
|
|
|
Bool
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86EnableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (IoFd >= 0)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
if ((IoFd = open("/dev/io", O_RDWR)) == -1) {
|
|
|
|
|
xf86Msg(X_WARNING, "xf86EnableIO: "
|
|
|
|
|
"Failed to open /dev/io for extended I/O");
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
return TRUE;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
xf86DisableIO()
|
|
|
|
|
{
|
2012-03-21 12:55:09 -07:00
|
|
|
if (IoFd < 0)
|
|
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
|
2012-03-21 12:55:09 -07:00
|
|
|
close(IoFd);
|
|
|
|
|
IoFd = -1;
|
|
|
|
|
return;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef __NetBSD__
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
/* Set TV output mode */
|
|
|
|
|
/***************************************************************************/
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
void
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86SetTVOut(int mode)
|
2012-03-21 12:55:09 -07:00
|
|
|
{
|
|
|
|
|
switch (xf86Info.consType) {
|
2003-11-14 16:48:57 +00:00
|
|
|
#ifdef PCCONS_SUPPORT
|
2012-03-21 12:55:09 -07:00
|
|
|
case PCCONS:{
|
|
|
|
|
|
|
|
|
|
if (ioctl(xf86Info.consoleFd, CONSOLE_X_TV_ON, &mode) < 0) {
|
|
|
|
|
xf86Msg(X_WARNING,
|
|
|
|
|
"xf86SetTVOut: Could not set console to TV output, %s\n",
|
|
|
|
|
strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif /* PCCONS_SUPPORT */
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
FatalError("Xf86SetTVOut: Unsupported console");
|
|
|
|
|
break;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
Rework symbol visibility for easier maintenance
Save in a few special cases, _X_EXPORT should not be used in C source
files. Instead, it should be used in headers, and the proper C source
include that header. Some special cases are symbols that need to be
shared between modules, but not expected to be used by external drivers,
and symbols that are accessible via LoaderSymbol/dlopen.
This patch also adds conditionally some new sdk header files, depending
on extensions enabled. These files were added to match pattern for
other extensions/modules, that is, have the headers "deciding" symbol
visibility in the sdk. These headers are:
o Xext/panoramiXsrv.h, Xext/panoramiX.h
o fbpict.h (unconditionally)
o vidmodeproc.h
o mioverlay.h (unconditionally, used only by xaa)
o xfixes.h (unconditionally, symbols required by dri2)
LoaderSymbol and similar functions now don't have different prototypes,
in loaderProcs.h and xf86Module.h, so that both headers can be included,
without the need of defining IN_LOADER.
xf86NewInputDevice() device prototype readded to xf86Xinput.h, but
not exported (and with a comment about it).
2008-12-03 05:43:34 -02:00
|
|
|
void
|
2003-11-14 16:48:57 +00:00
|
|
|
xf86SetRGBOut()
|
2012-03-21 12:55:09 -07:00
|
|
|
{
|
|
|
|
|
switch (xf86Info.consType) {
|
2003-11-14 16:48:57 +00:00
|
|
|
#ifdef PCCONS_SUPPORT
|
2012-03-21 12:55:09 -07:00
|
|
|
case PCCONS:{
|
|
|
|
|
|
|
|
|
|
if (ioctl(xf86Info.consoleFd, CONSOLE_X_TV_OFF, 0) < 0) {
|
|
|
|
|
xf86Msg(X_WARNING,
|
|
|
|
|
"xf86SetTVOut: Could not set console to RGB output, %s\n",
|
|
|
|
|
strerror(errno));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif /* PCCONS_SUPPORT */
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
FatalError("Xf86SetTVOut: Unsupported console");
|
|
|
|
|
break;
|
2003-11-14 16:48:57 +00:00
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endif
|