我用Delphi6作了一个ActiveForm,用来读取当前的MAC地址以便web调用。我先用BCB来做试验,MAC1->之后并没有我定义的函数,为什么?我在Public部分定义了
function Get_MacAddress: widestring; safecall; //取得当前机器的MAC地址然后下面
function TGetMAC.Get_MacAddress: widestring;
var
   Lib: Cardinal;
   Func: function(GUID: PGUID): Longint; stdcall;
   GUID1, GUID2: TGUID;
begin
   Result := '';
   Lib := LoadLibrary('rpcrt4.dll');
   if Lib <> 0 then
   begin
      @Func := GetProcAddress(Lib, 'UuidCreateSequential');
      if Assigned(Func) then
      begin
         if (Func(@GUID1) = 0) and
            (Func(@GUID2) = 0) and
            (GUID1.D4[2] = GUID2.D4[2]) and
            (GUID1.D4[3] = GUID2.D4[3]) and
            (GUID1.D4[4] = GUID2.D4[4]) and
            (GUID1.D4[5] = GUID2.D4[5]) and
            (GUID1.D4[6] = GUID2.D4[6]) and
            (GUID1.D4[7] = GUID2.D4[7]) then
         begin
            Result :=
               IntToHex(GUID1.D4[2], 2) + '-' +
               IntToHex(GUID1.D4[3], 2) + '-' +
               IntToHex(GUID1.D4[4], 2) + '-' +
               IntToHex(GUID1.D4[5], 2) + '-' +
               IntToHex(GUID1.D4[6], 2) + '-' +
               IntToHex(GUID1.D4[7], 2);
         end;
      end;
   end;
end;请教各位大虾!