home *** CD-ROM | disk | FTP | other *** search
- (* ------------------------------------------------------ *)
- (* PPATH.PAS *)
- (* (c) 1990 Dietmar Meisel & TOOLBOX *)
- (* ------------------------------------------------------ *)
- UNIT PPAth;
-
- INTERFACE
-
- USES Dos;
-
- VAR
- Direc : DirStr;
- DatBez : NameStr;
- ExtBez : ExtStr;
-
- FUNCTION ProgPath : DirStr;
-
- IMPLEMENTATION
-
- FUNCTION ProgPath : DirStr;
- BEGIN
- FSplit(Paramstr(0), Direc, DatBez, ExtBez);
- ProgPath := Direc;
- END;
-
- END.
- (* ------------------------------------------------------ *)
- (* Ende von PPATH.PAS *)