1 / 372

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;. ; Enhanced Quick Uploader v1.1. ; Written by Drew [PWA]. ; Last updated 11-15-95. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;.

lilka
Download Presentation

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  2. ; Enhanced Quick Uploader v1.1

  3. ; Written by Drew [PWA]

  4. ; Last updated 11-15-95

  5. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  6. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  7. ; function & procedure prototypes, err, declarations

  8. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  9. declare procedure Initialize()

  10. declare procedure CheckU()

  11. declare procedure CheckIndicate()

  12. declare function AskYesNo(string pr_string) boolean

  13. declare procedure PrintSelected(int curcmd, int col1, int col2)

  14. declare function GenerateDummyFilename() string

  15. declare procedure StuffKeyboard(string filename)

  16. declare procedure IndicateBlindUpload()

  17. declare procedure ShowRules()

  18. declare function DoPrivateUpload() boolean

  19. declare function GetFilename() string

  20. declare procedure GetDescription()

  21. declare procedure SendMessage(string filename)

  22. declare procedure CheckAttach()

  23. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  24. ; some variables just have to be declared globally

  25. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  26. string equ_cfg ; config file for EQU

  27. string indicate ; temp 0-byte filename to indicate if this ppe is used

  28. string desclines(5) ; quick description used when it's a private upload

  29. boolean doprivate ; flag indicating if upload is private or not

  30. int numspaces ; number of spaces between commands

  31. string noP, noH ; unhighlighted & highlighted text for "No"

  32. string yesP, yesH ; unhighlighted & highlighted text for "Yes"

  33. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  34. ; main body of program

  35. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

  36. begin

  37. string tmpstr ; and foo to you too

  38. Initialize()

  39. CheckIndicate()

  40. CheckAttach()

  41. ShowRules()

  42. ; ask if the upload is a private upload

  43. ;

  44. doprivate = AskYesNo(readline(equ_cfg, 8))

  45. if (doprivate == TRUE) then

  46. ; ask for a filename and description

  47. tmpstr = DoPrivateUpload()

  48. else

  49. ; if it's not a private upload, then create a dummy filename

  50. tmpstr = GenerateDummyFilename()

More Related