Programming/Delphi

컴퓨터 이름 알아내기

통통만두 2010. 6. 30. 15:32
반응형
// 컴퓨터 이름 알아내기.
function GetComputerNetName: String;
var
   buffer: array[0..255] of char;
   size: dword;
begin
   size := 256;
   if GetComputerName(buffer, size) then
      Result := buffer
   else
      Result := ''
end;
반응형