home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / maxcgis.zip / delflag.mex next >
Text File  |  1998-09-12  |  327b  |  21 lines

  1. // DELFLAG.MEX -- Removes the flag created by USERINFO.MEX
  2.  
  3. #include <max.mh>
  4. #include <prm.mh>
  5.  
  6. int kill_the_file()
  7. {
  8.   int: fd;
  9.   string: path;
  10.  
  11.   path := prm_string(PRM_SYSPATH) + "uonline." + uitostr(id.task_num);
  12.   print(path);
  13.   fd := remove(path);
  14.   return fd;
  15. }
  16.  
  17. void main()
  18. {
  19.   kill_the_file();
  20. }
  21.