G
gxdx
Unregistered / Unconfirmed
GUEST, unregistred user!
如题。
还有:
unit HDCliSock;
interface
Uses ScktComp;
type THDCliSock=class (TClientSocket)
private
UserID:String;
UserName:String;
RecID:integer;
SessionID:integer;
public
function SendSerMsg(MsgStr:String):boolean;
function ReceiveSerMsg(MsgStr:String):boolean;
end;
implementation
function SendSerMsg(MsgStr:String):boolean;
begin
Result:=false;
end;
function ReceiveSerMsg(MsgStr:String):boolean;
begin
Result:=false;
end;
end.
他说我:Unsatisfied forword or external declaration : THDCliSock.SendSerMsg and THDCliSock.ReceiveSerMsg
怎么办啊?
还有:
unit HDCliSock;
interface
Uses ScktComp;
type THDCliSock=class (TClientSocket)
private
UserID:String;
UserName:String;
RecID:integer;
SessionID:integer;
public
function SendSerMsg(MsgStr:String):boolean;
function ReceiveSerMsg(MsgStr:String):boolean;
end;
implementation
function SendSerMsg(MsgStr:String):boolean;
begin
Result:=false;
end;
function ReceiveSerMsg(MsgStr:String):boolean;
begin
Result:=false;
end;
end.
他说我:Unsatisfied forword or external declaration : THDCliSock.SendSerMsg and THDCliSock.ReceiveSerMsg
怎么办啊?