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