1 (* Copyright (C) Doom 2D: Forever Developers
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 {$INCLUDE a_modes.inc}
22 uses SysUtils
, CTypes
;
24 function SetEnvVar(const VarName
: AnsiString; const VarVal
: AnsiString): Boolean;
25 function GetUserName
: String;
36 {$IF DEFINED(WINDOWS)}
37 function setenv(const VarStr
: PChar; const VarVal
: PChar; Repl
: cint
): cint
;
39 if (SetEnvironmentVariable(VarStr
, VarVal
)) then
44 {$ELSEIF DEFINED(GO32V2)}
46 function setenv(const VarStr
: PChar; const VarVal
: PChar; Repl
: cint
): cint
; cdecl; external;
49 function setenv(const VarStr
: PChar; const VarVal
: PChar; Repl
: cint
): cint
; cdecl; external 'c' name
'setenv';
52 function SetEnvVar(const VarName
: AnsiString; const VarVal
: AnsiString): Boolean;
54 Result
:= (setenv(PChar(VarName
), PChar(VarVal
), 1) = 0);
57 (* Get system username already in cp1251 *)
58 function GetUserName
: AnsiString;
61 {$IF DEFINED(WINDOWS)}
62 Result
:= utf2win(UTF8String(SysUtils
.GetEnvironmentVariable(WideString('USERNAME'))));
63 {$ELSEIF DEFINED(UNIX)}
64 Result
:= utf2win(SysUtils
.GetEnvironmentVariable('USER'));
68 (* invalidate username with non-cp1251 symbols *)
70 while i
<= High(Result
) do
72 if Result
[i
] = '?' then