VirtualBox

Changeset 5107 in vbox


Ignore:
Timestamp:
Sep 28, 2007 7:02:15 PM (17 years ago)
Author:
vboxsync
Message:

getenv => RTEnvGet

Location:
trunk/src/VBox
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r4797 r5107  
    5050#include <iprt/dir.h>
    5151#include <iprt/file.h>
     52#include <iprt/env.h>
    5253#include <VBox/err.h>
    5354#include <VBox/version.h>
     
    50415042        /* make sure the VM process will start on the same display as VBoxManage */
    50425043        {
    5043             const char *display = getenv ("DISPLAY");
     5044            const char *display = RTEnvGet ("DISPLAY");
    50445045            if (display)
    50455046                env = Utf8StrFmt ("DISPLAY=%s", display);
  • trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp

    r4637 r5107  
    2525
    2626#include <iprt/stream.h>
     27#include <iprt/env.h>
    2728
    2829#ifdef RT_OS_OS2
     
    3738#include <VBox/err.h>
    3839#include <VBox/log.h>
    39 #include <stdlib.h>
    4040#include <signal.h>
    4141
     
    122122#ifdef RT_OS_WINDOWS
    123123    /* default to DirectX if nothing else set */
    124     if (!getenv("SDL_VIDEODRIVER"))
     124    if (!RTEnvGet("SDL_VIDEODRIVER"))
    125125    {
    126126        _putenv("SDL_VIDEODRIVER=directx");
     
    184184                         videoInfo->video_mem,
    185185                         videoInfo->vfmt->BitsPerPixel,
    186                          getenv("SDL_VIDEODRIVER"));
     186                         RTEnvGet("SDL_VIDEODRIVER"));
    187187    }
    188188
  • trunk/src/VBox/Frontends/VBoxSDL/VBoxSDLTest.cpp

    r4071 r5107  
    2323
    2424#include <iprt/assert.h>
     25#include <iprt/env.h>
    2526#include <iprt/stream.h>
    2627#include <iprt/string.h>
    2728#include <iprt/time.h>
    2829
    29 #include <stdlib.h>
    3030#include <signal.h>
    3131
     
    9090#ifdef RT_OS_WINDOWS
    9191    /* Default to DirectX if nothing else set. "windib" would be possible.  */
    92     if (!getenv("SDL_VIDEODRIVER"))
     92    if (!RTEnvGet("SDL_VIDEODRIVER"))
    9393    {
    9494        _putenv("SDL_VIDEODRIVER=directx");
     
    131131    RTPrintf("  Optimal bpp mode:                            %d\n", videoInfo->vfmt->BitsPerPixel);
    132132    char buf[256];
    133     RTPrintf("Video driver SDL_VIDEODRIVER / active:         %s/%s\n", getenv("SDL_VIDEODRIVER"),
     133    RTPrintf("Video driver SDL_VIDEODRIVER / active:         %s/%s\n", RTEnvGet("SDL_VIDEODRIVER"),
    134134                                                                       SDL_VideoDriverName(buf, sizeof(buf)));
    135135
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp

    r5094 r5107  
    7474#include <iprt/param.h>
    7575#include <iprt/path.h>
     76#include <iprt/env.h>
    7677
    7778#if defined (VBOX_GUI_DEBUG)
     
    28052806{
    28062807#ifdef Q_OS_UNIX
    2807     const char *s = getenv ("LC_ALL");
     2808    const char *s = RTEnvGet ("LC_ALL");
    28082809    if (s == 0)
    2809         s = getenv ("LC_MESSAGES");
     2810        s = RTEnvGet ("LC_MESSAGES");
    28102811    if (s == 0)
    2811         s = getenv ("LANG");
     2812        s = RTEnvGet ("LANG");
    28122813    if (s != 0)
    28132814        return QLocale (s).name();
  • trunk/src/VBox/Frontends/VirtualBox/src/VBoxSelectorWnd.cpp

    r5078 r5107  
    4343#include <qlayout.h>
    4444#include <qvbox.h>
     45
     46#ifdef Q_WS_X11
     47#include <iprt/env.h>
     48#endif
    4549
    4650
     
    864868    /* make sure the VM process will start on the same display as the Selector */
    865869    {
    866         const char *display = getenv ("DISPLAY");
     870        const char *display = RTEnvGet ("DISPLAY");
    867871        if (display)
    868872            env.sprintf ("DISPLAY=%s", display);
  • trunk/src/VBox/Main/HostImpl.cpp

    r4395 r5107  
    5151
    5252
    53 
    5453#include "HostImpl.h"
    5554#include "HostDVDDriveImpl.h"
     
    7776#include <iprt/time.h>
    7877#include <iprt/param.h>
     78#include <iprt/env.h>
    7979
    8080#include <stdio.h>
     
    208208
    209209    {
    210         if (getenv("VBOX_CDROM"))
    211         {
    212             char *cdromEnv = strdupa(getenv("VBOX_CDROM"));
     210        if (RTEnvGet("VBOX_CDROM"))
     211        {
     212            char *cdromEnv = strdupa(RTEnvGet("VBOX_CDROM"));
    213213            char *cdromDrive;
    214214            cdromDrive = strtok(cdromEnv, ":");
     
    314314
    315315    {
    316         if (getenv("VBOX_FLOPPY"))
    317         {
    318             char *floppyEnv = getenv("VBOX_FLOPPY");
     316        if (RTEnvGet("VBOX_FLOPPY"))
     317        {
     318            char *floppyEnv = strdupa(RTEnvGet("VBOX_FLOPPY"));
    319319            char *floppyDrive;
    320320            floppyDrive = strtok(floppyEnv, ":");
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette