postw32.1 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .TH delp 1 "12 Dec 1999" "Free Pascal" "FPC Windows binary post\-processor"
  2. .SH NAME
  3. postw32 \- Free Pascal Windows 32\-bit executable post processor.
  4. .SH SYNOPSIS
  5. .B postw32 [-vh] [-m subsystem] [-i file] [-V version] [-s size]
  6. .SH DESCRIPTION
  7. .B postw32
  8. does some post-processing on a Windows 32 bit executable file or library.
  9. It can set the windows subsystem, stack size, and file version.
  10. .SH USAGE
  11. .B postw32
  12. needs at least 2 options. One is the input filename (option
  13. .B -i
  14. ) and the other is one of the possible operations, with their arguments.
  15. .SH OPTIONS
  16. takes the following options at this time:
  17. .TP
  18. .B \-i file
  19. specifies the input file to process. This option is a short notation for the
  20. .B --input
  21. option.
  22. .TP
  23. .B \-h
  24. Displays a short help message. This option is a short notation for the
  25. .B --help
  26. option.
  27. .TP
  28. .B \-m subsystem
  29. Set the subsystem (the application type) to either
  30. .i gui
  31. or
  32. .i console
  33. Note that a gui application which writes to the command-line will cause an
  34. error. This option is a short notation for the
  35. .B \-\-subsystem
  36. option.
  37. .TP
  38. .B \-s size
  39. Set the stack size to
  40. .I size
  41. bytes. This option is a short notation for the
  42. .B \-\-stack
  43. option.
  44. .TP
  45. .B \-v
  46. Be verbose about the operations that are performed. This option is a short
  47. notation for the
  48. .B \-\-verbose
  49. option.
  50. .TP
  51. .B \-V M.N
  52. Set the version of the file to
  53. .I M.N
  54. , where
  55. .I M
  56. and
  57. .I N
  58. are 16 bit unsigned values. This option is a short notation for the
  59. .B \-\-version
  60. option.
  61. .SH SEE ALSO
  62. .IP
  63. .BR fpc (1)
  64. .BR ppc386 (1)