author | Michael Krelin <hacker@klever.net> | 2006-02-03 01:05:14 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2006-02-03 01:05:14 (UTC) |
commit | 51d59e6f7f45b8f4a60d2933e50bb8ee0c2ea20d (patch) (unidiff) | |
tree | a6693752131aaa39e56ebbca841179a8df4230ef | |
parent | a772d9f284b4c2a909c30ea33a132a487d932600 (diff) | |
download | pumpkin-51d59e6f7f45b8f4a60d2933e50bb8ee0c2ea20d.zip pumpkin-51d59e6f7f45b8f4a60d2933e50bb8ee0c2ea20d.tar.gz pumpkin-51d59e6f7f45b8f4a60d2933e50bb8ee0c2ea20d.tar.bz2 |
made main window resizable
git-svn-id: http://svn.klever.net/kin/pumpkin/trunk@146 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | PumpKINDlg.cpp | 84 | ||||
-rw-r--r-- | PumpKINDlg.h | 13 | ||||
-rw-r--r-- | help/pumpkin.rtf | 1 | ||||
-rw-r--r-- | help/pumpkin.xml | 1 | ||||
-rw-r--r-- | pumpkin.clw | 12 | ||||
-rw-r--r-- | pumpkin.mak | 76 | ||||
-rw-r--r-- | pumpkin.rc | 10 |
7 files changed, 124 insertions, 73 deletions
diff --git a/PumpKINDlg.cpp b/PumpKINDlg.cpp index 4cb1633..9786ef0 100644 --- a/PumpKINDlg.cpp +++ b/PumpKINDlg.cpp | |||
@@ -84,192 +84,211 @@ CPumpKINDlg::CPumpKINDlg(CWnd* pParent /*=NULL*/) | |||
84 | m_Listener.m_Daddy = this; | 84 | m_Listener.m_Daddy = this; |
85 | 85 | ||
86 | m_bListen = TRUE; | 86 | m_bListen = TRUE; |
87 | 87 | ||
88 | m_ListenPort = 69; | 88 | m_ListenPort = 69; |
89 | m_bTFTPSubdirs = TRUE; | 89 | m_bTFTPSubdirs = TRUE; |
90 | m_RRQMode = rrqAlwaysConfirm; | 90 | m_RRQMode = rrqAlwaysConfirm; |
91 | m_WRQMode = wrqAlwaysConfirm; | 91 | m_WRQMode = wrqAlwaysConfirm; |
92 | m_TFTPTimeOut = CTimeSpan(0,0,0,30); | 92 | m_TFTPTimeOut = CTimeSpan(0,0,0,30); |
93 | m_RetryTimeOut = CTimeSpan(0,0,0,10); | 93 | m_RetryTimeOut = CTimeSpan(0,0,0,10); |
94 | m_LogLength = 100; | 94 | m_LogLength = 100; |
95 | m_SpeakPort = 69; | 95 | m_SpeakPort = 69; |
96 | m_PromptTimeOut=30; | 96 | m_PromptTimeOut=30; |
97 | m_bShown=TRUE; | 97 | m_bShown=TRUE; |
98 | m_bExiting=FALSE; | 98 | m_bExiting=FALSE; |
99 | m_BlockSize=1024; | 99 | m_BlockSize=1024; |
100 | m_bnw.AssignSound("(bang)",IDR_WAVE_RING,CBellsNWhistles::CBang::bangResource); | 100 | m_bnw.AssignSound("(bang)",IDR_WAVE_RING,CBellsNWhistles::CBang::bangResource); |
101 | m_bnw.AssignSound("(done)",IDR_WAVE_FINISHED,CBellsNWhistles::CBang::bangResource); | 101 | m_bnw.AssignSound("(done)",IDR_WAVE_FINISHED,CBellsNWhistles::CBang::bangResource); |
102 | m_bnw.AssignSound("(oops)",IDR_WAVE_ABORTED,CBellsNWhistles::CBang::bangResource); | 102 | m_bnw.AssignSound("(oops)",IDR_WAVE_ABORTED,CBellsNWhistles::CBang::bangResource); |
103 | m_bnw.AssignSound("(none)",(int)0,CBellsNWhistles::CBang::bangNone); | 103 | m_bnw.AssignSound("(none)",(int)0,CBellsNWhistles::CBang::bangNone); |
104 | m_bnwRequest="(bang)"; m_bnwSuccess="(done)"; | 104 | m_bnwRequest="(bang)"; m_bnwSuccess="(done)"; |
105 | m_bnwAbort="(oops)"; | 105 | m_bnwAbort="(oops)"; |
106 | //{{AFX_DATA_INIT(CPumpKINDlg) | 106 | //{{AFX_DATA_INIT(CPumpKINDlg) |
107 | //}}AFX_DATA_INIT | 107 | //}}AFX_DATA_INIT |
108 | // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 | 108 | // Note that LoadIcon does not require a subsequent DestroyIcon in Win32 |
109 | m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); | 109 | m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); |
110 | m_bmpBack.LoadBitmap(IDB_BACKGROUND); | 110 | m_bmpBack.LoadBitmap(IDB_BACKGROUND); |
111 | m_bmpBack.GetBitmap(&m_bitmapBack); | 111 | m_bmpBack.GetBitmap(&m_bitmapBack); |
112 | m_Retrier = new CRetrier(this); | 112 | m_Retrier = new CRetrier(this); |
113 | ASSERT(m_Retrier); | 113 | ASSERT(m_Retrier); |
114 | m_Trayer = new CTrayer(this); | 114 | m_Trayer = new CTrayer(this); |
115 | ASSERT(m_Trayer); | 115 | ASSERT(m_Trayer); |
116 | /* Ensure we're backwards compatible */ | 116 | /* Ensure we're backwards compatible */ |
117 | ASSERT(CPumpKINDlg::rrqGiveAll==0); | 117 | ASSERT(CPumpKINDlg::rrqGiveAll==0); |
118 | ASSERT(CPumpKINDlg::rrqAlwaysConfirm==1); | 118 | ASSERT(CPumpKINDlg::rrqAlwaysConfirm==1); |
119 | ASSERT(CPumpKINDlg::rrqDenyAll==2); | 119 | ASSERT(CPumpKINDlg::rrqDenyAll==2); |
120 | ASSERT(CPumpKINDlg::wrqTakeAll==0); | 120 | ASSERT(CPumpKINDlg::wrqTakeAll==0); |
121 | ASSERT(CPumpKINDlg::wrqConfirmIfExists==1); | 121 | ASSERT(CPumpKINDlg::wrqConfirmIfExists==1); |
122 | ASSERT(CPumpKINDlg::wrqAlwaysConfirm==2); | 122 | ASSERT(CPumpKINDlg::wrqAlwaysConfirm==2); |
123 | ASSERT(CPumpKINDlg::wrqDenyAll==3); | 123 | ASSERT(CPumpKINDlg::wrqDenyAll==3); |
124 | /* -- */ | 124 | /* -- */ |
125 | LoadSettings(); | 125 | LoadSettings(); |
126 | } | 126 | } |
127 | 127 | ||
128 | void CPumpKINDlg::DoDataExchange(CDataExchange* pDX) | 128 | void CPumpKINDlg::DoDataExchange(CDataExchange* pDX) |
129 | { | 129 | { |
130 | CDialog::DoDataExchange(pDX); | 130 | CDialog::DoDataExchange(pDX); |
131 | //{{AFX_DATA_MAP(CPumpKINDlg) | 131 | //{{AFX_DATA_MAP(CPumpKINDlg) |
132 | DDX_Control(pDX, ID_HELP, m_HelpCtl); | ||
133 | DDX_Control(pDX, IDC_PUT, m_PutCtl); | ||
134 | DDX_Control(pDX, IDC_GET, m_GetCtl); | ||
135 | DDX_Control(pDX, IDC_EXIT, m_ExitCtl); | ||
132 | DDX_Control(pDX, IDC_LISTENING, m_ListenCtl); | 136 | DDX_Control(pDX, IDC_LISTENING, m_ListenCtl); |
133 | DDX_Control(pDX, IDC_ABORT, m_AbortCtl); | 137 | DDX_Control(pDX, IDC_ABORT, m_AbortCtl); |
134 | DDX_Control(pDX, IDC_OPTIONS, m_OptionsCtl); | 138 | DDX_Control(pDX, IDC_OPTIONS, m_OptionsCtl); |
135 | DDX_Control(pDX, IDC_LOG, m_Log); | 139 | DDX_Control(pDX, IDC_LOG, m_Log); |
136 | DDX_Control(pDX, IDC_CONNECTIONS, m_List); | 140 | DDX_Control(pDX, IDC_CONNECTIONS, m_List); |
137 | //}}AFX_DATA_MAP | 141 | //}}AFX_DATA_MAP |
138 | } | 142 | } |
139 | 143 | ||
140 | BEGIN_MESSAGE_MAP(CPumpKINDlg, CDialog) | 144 | BEGIN_MESSAGE_MAP(CPumpKINDlg, CDialog) |
141 | //{{AFX_MSG_MAP(CPumpKINDlg) | 145 | //{{AFX_MSG_MAP(CPumpKINDlg) |
142 | ON_WM_SYSCOMMAND() | 146 | ON_WM_SYSCOMMAND() |
143 | ON_WM_DESTROY() | 147 | ON_WM_DESTROY() |
144 | ON_WM_PAINT() | 148 | ON_WM_PAINT() |
145 | ON_WM_QUERYDRAGICON() | 149 | ON_WM_QUERYDRAGICON() |
146 | ON_WM_CREATE() | 150 | ON_WM_CREATE() |
147 | ON_BN_CLICKED(IDC_OPTIONS, OnOptions) | 151 | ON_BN_CLICKED(IDC_OPTIONS, OnOptions) |
148 | ON_WM_TIMER() | 152 | ON_WM_TIMER() |
149 | ON_BN_CLICKED(IDC_EXIT, OnExit) | 153 | ON_BN_CLICKED(IDC_EXIT, OnExit) |
150 | ON_BN_CLICKED(IDC_PUT, OnPut) | 154 | ON_BN_CLICKED(IDC_PUT, OnPut) |
151 | ON_BN_CLICKED(IDC_GET, OnGet) | 155 | ON_BN_CLICKED(IDC_GET, OnGet) |
152 | ON_NOTIFY(LVN_DELETEALLITEMS, IDC_CONNECTIONS, OnDeleteallitemsConnections) | 156 | ON_NOTIFY(LVN_DELETEALLITEMS, IDC_CONNECTIONS, OnDeleteallitemsConnections) |
153 | ON_NOTIFY(LVN_DELETEITEM, IDC_CONNECTIONS, OnDeleteitemConnections) | 157 | ON_NOTIFY(LVN_DELETEITEM, IDC_CONNECTIONS, OnDeleteitemConnections) |
154 | ON_NOTIFY(LVN_INSERTITEM, IDC_CONNECTIONS, OnInsertitemConnections) | 158 | ON_NOTIFY(LVN_INSERTITEM, IDC_CONNECTIONS, OnInsertitemConnections) |
155 | ON_NOTIFY(LVN_ITEMCHANGED, IDC_CONNECTIONS, OnItemchangedConnections) | 159 | ON_NOTIFY(LVN_ITEMCHANGED, IDC_CONNECTIONS, OnItemchangedConnections) |
156 | ON_BN_CLICKED(IDC_ABORT, OnAbort) | 160 | ON_BN_CLICKED(IDC_ABORT, OnAbort) |
157 | ON_WM_CLOSE() | 161 | ON_WM_CLOSE() |
158 | ON_COMMAND(ID_TRAY_SHOWPUMPKINWINDOW, OnTrayShowpumpkinwindow) | 162 | ON_COMMAND(ID_TRAY_SHOWPUMPKINWINDOW, OnTrayShowpumpkinwindow) |
163 | ON_COMMAND(ID_TRAY_LISTEN, OnTrayListen) | ||
159 | ON_COMMAND(ID_TRAY_EXIT, OnTrayExit) | 164 | ON_COMMAND(ID_TRAY_EXIT, OnTrayExit) |
160 | ON_COMMAND(ID_TRAY_ABOUTPUMPKIN, OnTrayAboutpumpkin) | 165 | ON_COMMAND(ID_TRAY_ABOUTPUMPKIN, OnTrayAboutpumpkin) |
161 | ON_COMMAND(ID_TRAY_FETCHFILE, OnTrayFetchfile) | 166 | ON_COMMAND(ID_TRAY_FETCHFILE, OnTrayFetchfile) |
162 | ON_COMMAND(ID_TRAY_HELP, OnTrayHelp) | 167 | ON_COMMAND(ID_TRAY_HELP, OnTrayHelp) |
163 | ON_COMMAND(ID_TRAY_OPTIONS, OnTrayOptions) | 168 | ON_COMMAND(ID_TRAY_OPTIONS, OnTrayOptions) |
164 | ON_COMMAND(ID_TRAY_SENDFILE, OnTraySendfile) | 169 | ON_COMMAND(ID_TRAY_SENDFILE, OnTraySendfile) |
165 | ON_WM_WINDOWPOSCHANGING() | 170 | ON_WM_WINDOWPOSCHANGING() |
166 | ON_LBN_SELCHANGE(IDC_LOG, OnSelchangeLog) | 171 | ON_LBN_SELCHANGE(IDC_LOG, OnSelchangeLog) |
167 | ON_COMMAND(ID_TRAY_OPENFILESFOLDER, OnTrayOpenfilesfolder) | 172 | ON_COMMAND(ID_TRAY_OPENFILESFOLDER, OnTrayOpenfilesfolder) |
168 | ON_WM_DROPFILES() | 173 | ON_WM_DROPFILES() |
169 | ON_BN_CLICKED(ID_HELP, OnHelp) | 174 | ON_BN_CLICKED(ID_HELP, OnHelp) |
170 | ON_BN_CLICKED(IDC_LISTENING, OnListening) | 175 | ON_BN_CLICKED(IDC_LISTENING, OnListening) |
171 | ON_COMMAND(ID_TRAY_LISTEN, OnTrayListen) | 176 | ON_WM_GETMINMAXINFO() |
177 | ON_WM_SIZE() | ||
172 | //}}AFX_MSG_MAP | 178 | //}}AFX_MSG_MAP |
173 | END_MESSAGE_MAP() | 179 | END_MESSAGE_MAP() |
174 | 180 | ||
175 | ///////////////////////////////////////////////////////////////////////////// | 181 | ///////////////////////////////////////////////////////////////////////////// |
176 | // CPumpKINDlg message handlers | 182 | // CPumpKINDlg message handlers |
177 | 183 | ||
178 | BOOL CPumpKINDlg::OnInitDialog() | 184 | BOOL CPumpKINDlg::OnInitDialog() |
179 | { | 185 | { |
180 | CDialog::OnInitDialog(); | 186 | CDialog::OnInitDialog(); |
181 | 187 | ||
182 | // Add "About..." menu item to system menu. | 188 | // Add "About..." menu item to system menu. |
183 | 189 | ||
184 | // IDM_ABOUTBOX must be in the system command range. | 190 | // IDM_ABOUTBOX must be in the system command range. |
185 | ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); | 191 | ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX); |
186 | ASSERT(IDM_ABOUTBOX < 0xF000); | 192 | ASSERT(IDM_ABOUTBOX < 0xF000); |
187 | 193 | ||
188 | CMenu* pSysMenu = GetSystemMenu(FALSE); | 194 | CMenu* pSysMenu = GetSystemMenu(FALSE); |
189 | CString strAboutMenu; | 195 | CString strAboutMenu; |
190 | strAboutMenu.LoadString(IDS_ABOUTBOX); | 196 | strAboutMenu.LoadString(IDS_ABOUTBOX); |
191 | if (!strAboutMenu.IsEmpty()) | 197 | if (!strAboutMenu.IsEmpty()) |
192 | { | 198 | { |
193 | pSysMenu->AppendMenu(MF_SEPARATOR); | 199 | pSysMenu->AppendMenu(MF_SEPARATOR); |
194 | pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); | 200 | pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu); |
195 | } | 201 | } |
196 | 202 | ||
197 | // Set the icon for this dialog. The framework does this automatically | 203 | // Set the icon for this dialog. The framework does this automatically |
198 | // when the application's main window is not a dialog | 204 | // when the application's main window is not a dialog |
199 | SetIcon(m_hIcon, TRUE); // Set big icon | 205 | SetIcon(m_hIcon, TRUE); // Set big icon |
200 | SetIcon(m_hIcon, FALSE); // Set small icon | 206 | SetIcon(m_hIcon, FALSE); // Set small icon |
201 | 207 | ||
202 | VERIFY(m_Retrier->Create(NULL,"PumpKIN-Retrier",WS_CHILD,CRect(0,0,0,0),this,0)); | 208 | VERIFY(m_Retrier->Create(NULL,"PumpKIN-Retrier",WS_CHILD,CRect(0,0,0,0),this,0)); |
203 | 209 | ||
204 | |||
205 | m_Images.Create(16,16,TRUE,2,1); | 210 | m_Images.Create(16,16,TRUE,2,1); |
206 | m_iRRQ = m_Images.Add(AfxGetApp()->LoadIcon(IDI_RRQ)); | 211 | m_iRRQ = m_Images.Add(AfxGetApp()->LoadIcon(IDI_RRQ)); |
207 | m_iWRQ = m_Images.Add(AfxGetApp()->LoadIcon(IDI_WRQ)); | 212 | m_iWRQ = m_Images.Add(AfxGetApp()->LoadIcon(IDI_WRQ)); |
208 | ASSERT(m_iRRQ>=0); | 213 | ASSERT(m_iRRQ>=0); |
209 | ASSERT(m_iWRQ>=0); | 214 | ASSERT(m_iWRQ>=0); |
210 | m_List.SetImageList(&m_Images,LVSIL_NORMAL); | 215 | m_List.SetImageList(&m_Images,LVSIL_NORMAL); |
211 | m_List.SetImageList(&m_Images,LVSIL_SMALL); | 216 | m_List.SetImageList(&m_Images,LVSIL_SMALL); |
212 | m_List.SetImageList(&m_Images,LVSIL_STATE); | 217 | m_List.SetImageList(&m_Images,LVSIL_STATE); |
213 | m_List.SetTextColor(RGB(255,255,0));// Yellow | 218 | m_List.SetTextColor(RGB(255,255,0));// Yellow |
214 | m_List.SetTextBkColor(RGB(12,167,0));// Green | 219 | m_List.SetTextBkColor(RGB(12,167,0));// Green |
215 | m_List.SetBkColor(RGB(12,167,0));// Green | 220 | m_List.SetBkColor(RGB(12,167,0));// Green |
216 | CRect listrc; | 221 | CRect listrc; |
217 | m_List.GetClientRect(&listrc); | 222 | m_List.GetClientRect(&listrc); |
218 | m_List.InsertColumn(0,"File",LVCFMT_LEFT,listrc.Width()-((listrc.Width()/7)*3+listrc.Width()*2/7),subitemFile); | 223 | m_List.InsertColumn(0,"File",LVCFMT_LEFT,listrc.Width()-((listrc.Width()/7)*3+listrc.Width()*2/7),subitemFile); |
219 | m_List.InsertColumn(1,"type",LVCFMT_CENTER,listrc.Width()/7,subitemType); | 224 | m_List.InsertColumn(1,"type",LVCFMT_CENTER,listrc.Width()/7,subitemType); |
220 | m_List.InsertColumn(2,"peer",LVCFMT_LEFT,listrc.Width()*2/7,subitemPeer); | 225 | m_List.InsertColumn(2,"peer",LVCFMT_LEFT,listrc.Width()*2/7,subitemPeer); |
221 | m_List.InsertColumn(3,"ACK",LVCFMT_RIGHT,listrc.Width()/7,subitemBytes); | 226 | m_List.InsertColumn(3,"ACK",LVCFMT_RIGHT,listrc.Width()/7,subitemBytes); |
222 | m_List.InsertColumn(4,"tsize",LVCFMT_RIGHT,listrc.Width()/7,subitemTSize); | 227 | m_List.InsertColumn(4,"tsize",LVCFMT_RIGHT,listrc.Width()/7,subitemTSize); |
223 | 228 | ||
224 | LogLine(IDS_LOG_START); | 229 | LogLine(IDS_LOG_START); |
225 | 230 | ||
226 | SetupButtons(); | 231 | SetupButtons(); |
227 | 232 | ||
233 | CRect wrci, wrco; | ||
234 | GetWindowRect(&wrco); | ||
235 | GetClientRect(&wrci); | ||
236 | CRect brc; | ||
237 | m_GetCtl.GetWindowRect(&brc); ScreenToClient(&brc); | ||
238 | m_rightGapButtons = wrci.right-brc.right; | ||
239 | m_List.GetWindowRect(&brc); ScreenToClient(&brc); | ||
240 | m_rightGapList = wrci.right-brc.right; | ||
241 | m_ListenCtl.GetWindowRect(&brc); ScreenToClient(&brc); | ||
242 | m_bottomGapListen = wrci.bottom-brc.bottom; | ||
243 | m_Log.GetWindowRect(&brc);ScreenToClient(&brc); | ||
244 | m_bottomGapLog = wrci.bottom-brc.bottom; | ||
245 | m_MinSize.cx = wrco.Width(); m_MinSize.cy=wrco.Height(); | ||
246 | |||
228 | CRect rc, drc; | 247 | CRect rc, drc; |
229 | GetWindowRect(rc); | 248 | GetWindowRect(rc); |
230 | GetDesktopWindow()->GetWindowRect(drc); | 249 | GetDesktopWindow()->GetWindowRect(drc); |
231 | SetWindowPos(NULL,drc.right-6-rc.Width(),6,0,0,SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOZORDER); | 250 | SetWindowPos(NULL,drc.right-6-rc.Width(),6,0,0,SWP_NOACTIVATE|SWP_NOSIZE|SWP_NOZORDER); |
232 | 251 | ||
233 | if(m_bShown) | 252 | if(m_bShown) |
234 | ShowWindow(SW_SHOW); | 253 | ShowWindow(SW_SHOW); |
235 | else | 254 | else |
236 | ShowWindow(SW_HIDE); | 255 | ShowWindow(SW_HIDE); |
237 | 256 | ||
238 | m_ListenCtl.SetCheck(m_Listener.m_bListen?1:0); | 257 | m_ListenCtl.SetCheck(m_Listener.m_bListen?1:0); |
239 | 258 | ||
240 | // CG: The following block was added by the ToolTips component. | 259 | // CG: The following block was added by the ToolTips component. |
241 | { | 260 | { |
242 | // Create the ToolTip control. | 261 | // Create the ToolTip control. |
243 | m_tooltip.Create(this); | 262 | m_tooltip.Create(this); |
244 | m_tooltip.Activate(TRUE); | 263 | m_tooltip.Activate(TRUE); |
245 | 264 | ||
246 | m_tooltip.AddTool(&m_List,IDC_CONNECTIONS); | 265 | m_tooltip.AddTool(&m_List,IDC_CONNECTIONS); |
247 | m_tooltip.AddTool(GetDlgItem(IDC_PUT),IDC_PUT); | 266 | m_tooltip.AddTool(GetDlgItem(IDC_PUT),IDC_PUT); |
248 | m_tooltip.AddTool(GetDlgItem(IDC_GET),IDC_GET); | 267 | m_tooltip.AddTool(GetDlgItem(IDC_GET),IDC_GET); |
249 | m_tooltip.AddTool(&m_AbortCtl,IDC_ABORT); | 268 | m_tooltip.AddTool(&m_AbortCtl,IDC_ABORT); |
250 | m_tooltip.AddTool(GetDlgItem(IDC_OPTIONS),IDC_OPTIONS); | 269 | m_tooltip.AddTool(GetDlgItem(IDC_OPTIONS),IDC_OPTIONS); |
251 | m_tooltip.AddTool(GetDlgItem(IDC_EXIT),IDC_EXIT); | 270 | m_tooltip.AddTool(GetDlgItem(IDC_EXIT),IDC_EXIT); |
252 | m_tooltip.AddTool(GetDlgItem(ID_HELP),ID_HELP); | 271 | m_tooltip.AddTool(GetDlgItem(ID_HELP),ID_HELP); |
253 | m_tooltip.AddTool(GetDlgItem(IDC_LOG),IDC_LOG); | 272 | m_tooltip.AddTool(GetDlgItem(IDC_LOG),IDC_LOG); |
254 | } | 273 | } |
255 | return TRUE; // return TRUE unless you set the focus to a control | 274 | return TRUE; // return TRUE unless you set the focus to a control |
256 | } | 275 | } |
257 | 276 | ||
258 | void CPumpKINDlg::OnSysCommand(UINT nID, LPARAM lParam) | 277 | void CPumpKINDlg::OnSysCommand(UINT nID, LPARAM lParam) |
259 | { | 278 | { |
260 | if ((nID & 0xFFF0) == IDM_ABOUTBOX) | 279 | if ((nID & 0xFFF0) == IDM_ABOUTBOX) |
261 | { | 280 | { |
262 | CAboutDlg dlgAbout; | 281 | CAboutDlg dlgAbout; |
263 | dlgAbout.DoModal(); | 282 | dlgAbout.DoModal(); |
264 | } | 283 | } |
265 | else | 284 | else |
266 | { | 285 | { |
267 | CDialog::OnSysCommand(nID, lParam); | 286 | CDialog::OnSysCommand(nID, lParam); |
268 | } | 287 | } |
269 | } | 288 | } |
270 | 289 | ||
271 | void CPumpKINDlg::OnDestroy() | 290 | void CPumpKINDlg::OnDestroy() |
272 | { | 291 | { |
273 | SaveSettings(); | 292 | SaveSettings(); |
274 | 293 | ||
275 | NOTIFYICONDATA nid; | 294 | NOTIFYICONDATA nid; |
@@ -2032,48 +2051,109 @@ void CPumpKINDlg::OnHelp() | |||
2032 | BOOL CListenSocket::SetListen(BOOL b) { | 2051 | BOOL CListenSocket::SetListen(BOOL b) { |
2033 | ASSERT(m_Daddy); | 2052 | ASSERT(m_Daddy); |
2034 | if(b==m_bListen) | 2053 | if(b==m_bListen) |
2035 | return TRUE; | 2054 | return TRUE; |
2036 | if(b) { | 2055 | if(b) { |
2037 | if(!Create(m_Daddy->m_ListenPort,SOCK_DGRAM)) | 2056 | if(!Create(m_Daddy->m_ListenPort,SOCK_DGRAM)) |
2038 | return FALSE; | 2057 | return FALSE; |
2039 | return m_bListen=TRUE; | 2058 | return m_bListen=TRUE; |
2040 | }else{ | 2059 | }else{ |
2041 | Close(); m_bListen=FALSE; | 2060 | Close(); m_bListen=FALSE; |
2042 | return TRUE; | 2061 | return TRUE; |
2043 | } | 2062 | } |
2044 | } | 2063 | } |
2045 | 2064 | ||
2046 | void CPumpKINDlg::OnListening() | 2065 | void CPumpKINDlg::OnListening() |
2047 | { | 2066 | { |
2048 | if(!m_Listener.SetListen(m_ListenCtl.GetCheck()==1)) { | 2067 | if(!m_Listener.SetListen(m_ListenCtl.GetCheck()==1)) { |
2049 | TRACE0("Failed to create socket\n"); | 2068 | TRACE0("Failed to create socket\n"); |
2050 | AfxMessageBox(IDS_BOX_CANTBIND,MB_OK|MB_ICONEXCLAMATION); | 2069 | AfxMessageBox(IDS_BOX_CANTBIND,MB_OK|MB_ICONEXCLAMATION); |
2051 | } | 2070 | } |
2052 | m_ListenCtl.SetCheck(m_Listener.m_bListen?1:0); | 2071 | m_ListenCtl.SetCheck(m_Listener.m_bListen?1:0); |
2053 | m_bListen=m_Listener.m_bListen; | 2072 | m_bListen=m_Listener.m_bListen; |
2054 | } | 2073 | } |
2055 | 2074 | ||
2056 | void CPumpKINDlg::OnTrayListen() | 2075 | void CPumpKINDlg::OnTrayListen() |
2057 | { | 2076 | { |
2058 | if(!m_Listener.SetListen(!m_Listener.m_bListen)) { | 2077 | if(!m_Listener.SetListen(!m_Listener.m_bListen)) { |
2059 | TRACE0("Failed to create socket\n"); | 2078 | TRACE0("Failed to create socket\n"); |
2060 | AfxMessageBox(IDS_BOX_CANTBIND,MB_OK|MB_ICONEXCLAMATION); | 2079 | AfxMessageBox(IDS_BOX_CANTBIND,MB_OK|MB_ICONEXCLAMATION); |
2061 | } | 2080 | } |
2062 | m_ListenCtl.SetCheck(m_Listener.m_bListen?1:0); | 2081 | m_ListenCtl.SetCheck(m_Listener.m_bListen?1:0); |
2063 | m_bListen=m_Listener.m_bListen; | 2082 | m_bListen=m_Listener.m_bListen; |
2064 | } | 2083 | } |
2065 | 2084 | ||
2066 | void CPumpKINDlg::LogLine(LPCTSTR str) | 2085 | void CPumpKINDlg::LogLine(LPCTSTR str) |
2067 | { | 2086 | { |
2068 | LogLineToScreen(str); | 2087 | LogLineToScreen(str); |
2069 | if(!m_LogFile.IsEmpty()) { | 2088 | if(!m_LogFile.IsEmpty()) { |
2070 | if(!Klever::LogRecord((LPCTSTR)m_LogFile,str)) { | 2089 | if(!Klever::LogRecord((LPCTSTR)m_LogFile,str)) { |
2071 | if(m_lastlogerr!=m_LogFile) { | 2090 | if(m_lastlogerr!=m_LogFile) { |
2072 | CString tmp; | 2091 | CString tmp; |
2073 | tmp.Format(IDS_LOG_LOGERROR,m_LogFile); | 2092 | tmp.Format(IDS_LOG_LOGERROR,m_LogFile); |
2074 | LogLineToScreen(tmp); | 2093 | LogLineToScreen(tmp); |
2075 | m_lastlogerr=m_LogFile; | 2094 | m_lastlogerr=m_LogFile; |
2076 | } | 2095 | } |
2077 | } | 2096 | } |
2078 | } | 2097 | } |
2079 | } | 2098 | } |
2099 | |||
2100 | void CPumpKINDlg::OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI) | ||
2101 | { | ||
2102 | CDialog::OnGetMinMaxInfo(lpMMI); | ||
2103 | if(m_MinSize.cx>0 && m_MinSize.cy>0){ | ||
2104 | lpMMI->ptMinTrackSize.x = m_MinSize.cx; | ||
2105 | lpMMI->ptMinTrackSize.y = m_MinSize.cy; | ||
2106 | } | ||
2107 | } | ||
2108 | |||
2109 | void CPumpKINDlg::OnSize(UINT nType, int cx, int cy) | ||
2110 | { | ||
2111 | CDialog::OnSize(nType, cx, cy); | ||
2112 | if(nType==SIZE_RESTORED) | ||
2113 | RecalcLayout(cx,cy); | ||
2114 | } | ||
2115 | |||
2116 | void CPumpKINDlg::RecalcLayout(int,int) | ||
2117 | { | ||
2118 | CRect wrc; | ||
2119 | GetClientRect(&wrc); | ||
2120 | AdjustButton(m_GetCtl,wrc); | ||
2121 | AdjustButton(m_PutCtl,wrc); | ||
2122 | AdjustButton(m_AbortCtl,wrc); | ||
2123 | AdjustButton(m_HelpCtl,wrc); | ||
2124 | AdjustButton(m_ExitCtl,wrc); | ||
2125 | AdjustButton(m_OptionsCtl,wrc); | ||
2126 | CRect brc; | ||
2127 | m_List.GetWindowRect(&brc); ScreenToClient(&brc); | ||
2128 | m_List.SetWindowPos( | ||
2129 | 0, | ||
2130 | brc.left, brc.top, | ||
2131 | wrc.right-m_rightGapList-brc.left, brc.bottom-brc.top, | ||
2132 | SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOZORDER|SWP_NOCOPYBITS ); | ||
2133 | m_Log.GetWindowRect(&brc); ScreenToClient(&brc); | ||
2134 | m_Log.SetWindowPos( | ||
2135 | 0, | ||
2136 | brc.left, brc.top, | ||
2137 | wrc.right-m_rightGapButtons-brc.left, wrc.bottom-m_bottomGapLog-brc.top, | ||
2138 | SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOZORDER|SWP_NOCOPYBITS ); | ||
2139 | m_ListenCtl.GetWindowRect(&brc); ScreenToClient(&brc); | ||
2140 | m_ListenCtl.SetWindowPos( | ||
2141 | 0, | ||
2142 | wrc.right-brc.Width()-m_rightGapButtons, wrc.bottom-brc.Height()-m_bottomGapListen, | ||
2143 | 0,0, | ||
2144 | SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER|SWP_NOCOPYBITS ); | ||
2145 | int i = m_Log.GetCount(); | ||
2146 | if(i!=LB_ERR) | ||
2147 | m_Log.SetCurSel(i-1); | ||
2148 | } | ||
2149 | |||
2150 | void CPumpKINDlg::AdjustButton(CWnd& w,CRect& wrc) | ||
2151 | { | ||
2152 | CRect brc; | ||
2153 | w.GetWindowRect(&brc); ScreenToClient(&brc); | ||
2154 | w.SetWindowPos( | ||
2155 | 0, | ||
2156 | wrc.right-brc.Width()-m_rightGapButtons, brc.top, | ||
2157 | 0, 0, | ||
2158 | SWP_NOACTIVATE|SWP_NOOWNERZORDER|SWP_NOSIZE|SWP_NOZORDER|SWP_NOCOPYBITS ); | ||
2159 | } | ||
diff --git a/PumpKINDlg.h b/PumpKINDlg.h index b247c56..c5469f1 100644 --- a/PumpKINDlg.h +++ b/PumpKINDlg.h | |||
@@ -322,166 +322,179 @@ public: | |||
322 | }; | 322 | }; |
323 | class CWRQSocket : public CXferSocket { | 323 | class CWRQSocket : public CXferSocket { |
324 | public: | 324 | public: |
325 | BOOL m_bResume; | 325 | BOOL m_bResume; |
326 | void OnHostKnown(); | 326 | void OnHostKnown(); |
327 | virtual void OnResolved(); | 327 | virtual void OnResolved(); |
328 | UINT m_LastSlack; | 328 | UINT m_LastSlack; |
329 | ULONG GetACK(); | 329 | ULONG GetACK(); |
330 | void DoXfer(); | 330 | void DoXfer(); |
331 | UINT m_ACK; | 331 | UINT m_ACK; |
332 | BOOL SaveAs(CString& fn); | 332 | BOOL SaveAs(CString& fn); |
333 | BOOL RenameFile(CString& fn); | 333 | BOOL RenameFile(CString& fn); |
334 | BOOL m_Rename; | 334 | BOOL m_Rename; |
335 | BOOL ConfirmRequest(); | 335 | BOOL ConfirmRequest(); |
336 | BOOL Create(LPCTSTR localFile=NULL,LPCTSTR hostName=NULL); | 336 | BOOL Create(LPCTSTR localFile=NULL,LPCTSTR hostName=NULL); |
337 | CWRQSocket(CPumpKINDlg* daddy,LPCTSTR fileName,LPCTSTR type,SOCKADDR_IN *sin); | 337 | CWRQSocket(CPumpKINDlg* daddy,LPCTSTR fileName,LPCTSTR type,SOCKADDR_IN *sin); |
338 | BOOL OnTFTP(tftp* p); | 338 | BOOL OnTFTP(tftp* p); |
339 | 339 | ||
340 | DECLARE_DYNAMIC(CWRQSocket) | 340 | DECLARE_DYNAMIC(CWRQSocket) |
341 | }; | 341 | }; |
342 | class CRRQSocket : public CXferSocket { | 342 | class CRRQSocket : public CXferSocket { |
343 | public: | 343 | public: |
344 | void OnHostKnown(); | 344 | void OnHostKnown(); |
345 | virtual void OnResolved(); | 345 | virtual void OnResolved(); |
346 | BOOL ConfirmRequest(); | 346 | BOOL ConfirmRequest(); |
347 | WORD m_LastSlack; | 347 | WORD m_LastSlack; |
348 | UINT m_ACK; | 348 | UINT m_ACK; |
349 | BOOL OnTFTP(tftp* p); | 349 | BOOL OnTFTP(tftp* p); |
350 | ULONG GetACK(void); | 350 | ULONG GetACK(void); |
351 | void DoXfer(); | 351 | void DoXfer(); |
352 | CRRQSocket(CPumpKINDlg *daddy,LPCTSTR fileName,LPCTSTR type,SOCKADDR_IN *sin); | 352 | CRRQSocket(CPumpKINDlg *daddy,LPCTSTR fileName,LPCTSTR type,SOCKADDR_IN *sin); |
353 | BOOL Create(LPCTSTR localFile=NULL,LPCTSTR hostName=NULL); | 353 | BOOL Create(LPCTSTR localFile=NULL,LPCTSTR hostName=NULL); |
354 | 354 | ||
355 | DECLARE_DYNAMIC(CRRQSocket) | 355 | DECLARE_DYNAMIC(CRRQSocket) |
356 | }; | 356 | }; |
357 | 357 | ||
358 | typedef CMap<SOCKET,SOCKET,CXferSocket*,CXferSocket*>CTIDMap; | 358 | typedef CMap<SOCKET,SOCKET,CXferSocket*,CXferSocket*>CTIDMap; |
359 | typedef CMap<CTime*,CTime*,CTime*,CTime*> CTimeMap; | 359 | typedef CMap<CTime*,CTime*,CTime*,CTime*> CTimeMap; |
360 | 360 | ||
361 | ///////////////////////////////////////////////////////////////////////////// | 361 | ///////////////////////////////////////////////////////////////////////////// |
362 | // CPumpKINDlg dialog | 362 | // CPumpKINDlg dialog |
363 | 363 | ||
364 | class CTrayer; | 364 | class CTrayer; |
365 | class CRetrier; | 365 | class CRetrier; |
366 | class CPumpKINDlg : public CDialog | 366 | class CPumpKINDlg : public CDialog |
367 | { | 367 | { |
368 | // Construction | 368 | // Construction |
369 | public: | 369 | public: |
370 | void AdjustButton(CWnd& w,CRect& wrc); | ||
371 | void RecalcLayout(int,int); | ||
372 | CSize m_MinSize; | ||
373 | UINT m_bottomGapLog; | ||
374 | UINT m_bottomGapListen; | ||
375 | UINT m_rightGapList; | ||
376 | UINT m_rightGapButtons; | ||
370 | CString m_lastlogerr; | 377 | CString m_lastlogerr; |
371 | void LogLine(LPCTSTR str); | 378 | void LogLine(LPCTSTR str); |
372 | CString m_LogFile; | 379 | CString m_LogFile; |
373 | BOOL m_bListen; | 380 | BOOL m_bListen; |
374 | acl_rules_t m_aclRules; | 381 | acl_rules_t m_aclRules; |
375 | CString m_bnwRequest; | 382 | CString m_bnwRequest; |
376 | CString m_bnwSuccess; | 383 | CString m_bnwSuccess; |
377 | CString m_bnwAbort; | 384 | CString m_bnwAbort; |
378 | CBellsNWhistles m_bnw; | 385 | CBellsNWhistles m_bnw; |
379 | CTrayer *m_Trayer; | 386 | CTrayer *m_Trayer; |
380 | CTimeSpan m_RetryTimeOut; | 387 | CTimeSpan m_RetryTimeOut; |
381 | virtual ~CPumpKINDlg(); | 388 | virtual ~CPumpKINDlg(); |
382 | CRetrier* m_Retrier; | 389 | CRetrier* m_Retrier; |
383 | virtual BOOL PreTranslateMessage(MSG* pMsg); | 390 | virtual BOOL PreTranslateMessage(MSG* pMsg); |
384 | BOOL m_bShown; | 391 | BOOL m_bShown; |
385 | BOOL m_bExiting; | 392 | BOOL m_bExiting; |
386 | void SaveSettings(); | 393 | void SaveSettings(); |
387 | void LoadSettings(); | 394 | void LoadSettings(); |
388 | void SetupButtons(); | 395 | void SetupButtons(); |
389 | BITMAP m_bitmapBack; | 396 | BITMAP m_bitmapBack; |
390 | CBitmap m_bmpBack; | 397 | CBitmap m_bmpBack; |
391 | UINT m_PromptTimeOut; | 398 | UINT m_PromptTimeOut; |
392 | UINT m_SpeakPort; | 399 | UINT m_SpeakPort; |
393 | void LogLine(UINT msgID); | 400 | void LogLine(UINT msgID); |
394 | CTimeMap m_LogTimes; | 401 | CTimeMap m_LogTimes; |
395 | void LogLineToFile(LPCTSTR str); | 402 | void LogLineToFile(LPCTSTR str); |
396 | void LogLineToScreen(LPCTSTR str); | 403 | void LogLineToScreen(LPCTSTR str); |
397 | int m_LogLength; | 404 | int m_LogLength; |
398 | enum{ | 405 | enum{ |
399 | subitemFile=0, subitemType, subitemPeer, subitemBytes, subitemTSize | 406 | subitemFile=0, subitemType, subitemPeer, subitemBytes, subitemTSize |
400 | }; | 407 | }; |
401 | int m_iWRQ; | 408 | int m_iWRQ; |
402 | int m_iRRQ; | 409 | int m_iRRQ; |
403 | CImageList m_Images; | 410 | CImageList m_Images; |
404 | CTIDMap m_Xfers; | 411 | CTIDMap m_Xfers; |
405 | CTimeSpan m_TFTPTimeOut; | 412 | CTimeSpan m_TFTPTimeOut; |
406 | enum{ | 413 | enum{ |
407 | rrqGiveAll=acl_rule::rrqGrant, | 414 | rrqGiveAll=acl_rule::rrqGrant, |
408 | rrqAlwaysConfirm=acl_rule::rrqPrompt, | 415 | rrqAlwaysConfirm=acl_rule::rrqPrompt, |
409 | rrqDenyAll=acl_rule::rrqDeny, | 416 | rrqDenyAll=acl_rule::rrqDeny, |
410 | rrqFallback=acl_rule::rrqNone, | 417 | rrqFallback=acl_rule::rrqNone, |
411 | rrqGrant=rrqGiveAll, rrqDeny=rrqDenyAll, rrqPrompt=rrqAlwaysConfirm | 418 | rrqGrant=rrqGiveAll, rrqDeny=rrqDenyAll, rrqPrompt=rrqAlwaysConfirm |
412 | }; | 419 | }; |
413 | enum{ | 420 | enum{ |
414 | wrqTakeAll=acl_rule::wrqGrant, | 421 | wrqTakeAll=acl_rule::wrqGrant, |
415 | wrqConfirmIfExists=acl_rule::wrqPromptIfExists, | 422 | wrqConfirmIfExists=acl_rule::wrqPromptIfExists, |
416 | wrqAlwaysConfirm=acl_rule::wrqPrompt, | 423 | wrqAlwaysConfirm=acl_rule::wrqPrompt, |
417 | wrqDenyAll=acl_rule::wrqDeny, | 424 | wrqDenyAll=acl_rule::wrqDeny, |
418 | wrqFallback=acl_rule::wrqNone, | 425 | wrqFallback=acl_rule::wrqNone, |
419 | wrqGrant=wrqTakeAll,wrqDeny=wrqDenyAll, wrqPrompt=wrqAlwaysConfirm | 426 | wrqGrant=wrqTakeAll,wrqDeny=wrqDenyAll, wrqPrompt=wrqAlwaysConfirm |
420 | }; | 427 | }; |
421 | UINT m_RRQMode; | 428 | UINT m_RRQMode; |
422 | UINT m_WRQMode; | 429 | UINT m_WRQMode; |
423 | BOOL m_bTFTPSubdirs; | 430 | BOOL m_bTFTPSubdirs; |
424 | CString m_TFTPRoot; | 431 | CString m_TFTPRoot; |
425 | UINT m_ListenPort; | 432 | UINT m_ListenPort; |
426 | UINT m_BlockSize; | 433 | UINT m_BlockSize; |
427 | CListenSocket m_Listener; | 434 | CListenSocket m_Listener; |
428 | CPumpKINDlg(CWnd* pParent = NULL);// standard constructor | 435 | CPumpKINDlg(CWnd* pParent = NULL);// standard constructor |
429 | 436 | ||
430 | // Dialog Data | 437 | // Dialog Data |
431 | //{{AFX_DATA(CPumpKINDlg) | 438 | //{{AFX_DATA(CPumpKINDlg) |
432 | enum { IDD = IDD_PUMPKIN_DIALOG }; | 439 | enum { IDD = IDD_PUMPKIN_DIALOG }; |
440 | CButtonm_HelpCtl; | ||
441 | CButtonm_PutCtl; | ||
442 | CButtonm_GetCtl; | ||
443 | CButtonm_ExitCtl; | ||
433 | CButtonm_ListenCtl; | 444 | CButtonm_ListenCtl; |
434 | CButtonm_AbortCtl; | 445 | CButtonm_AbortCtl; |
435 | CButtonm_OptionsCtl; | 446 | CButtonm_OptionsCtl; |
436 | CListBoxm_Log; | 447 | CListBoxm_Log; |
437 | CListCtrlm_List; | 448 | CListCtrlm_List; |
438 | //}}AFX_DATA | 449 | //}}AFX_DATA |
439 | 450 | ||
440 | // ClassWizard generated virtual function overrides | 451 | // ClassWizard generated virtual function overrides |
441 | //{{AFX_VIRTUAL(CPumpKINDlg) | 452 | //{{AFX_VIRTUAL(CPumpKINDlg) |
442 | protected: | 453 | protected: |
443 | virtual void DoDataExchange(CDataExchange* pDX);// DDX/DDV support | 454 | virtual void DoDataExchange(CDataExchange* pDX);// DDX/DDV support |
444 | //}}AFX_VIRTUAL | 455 | //}}AFX_VIRTUAL |
445 | 456 | ||
446 | // Implementation | 457 | // Implementation |
447 | protected: | 458 | protected: |
448 | CToolTipCtrl m_tooltip; | 459 | CToolTipCtrl m_tooltip; |
449 | HICON m_hIcon; | 460 | HICON m_hIcon; |
450 | 461 | ||
451 | // Generated message map functions | 462 | // Generated message map functions |
452 | //{{AFX_MSG(CPumpKINDlg) | 463 | //{{AFX_MSG(CPumpKINDlg) |
453 | virtual BOOL OnInitDialog(); | 464 | virtual BOOL OnInitDialog(); |
454 | afx_msg void OnSysCommand(UINT nID, LPARAM lParam); | 465 | afx_msg void OnSysCommand(UINT nID, LPARAM lParam); |
455 | afx_msg void OnDestroy(); | 466 | afx_msg void OnDestroy(); |
456 | afx_msg void OnPaint(); | 467 | afx_msg void OnPaint(); |
457 | afx_msg HCURSOR OnQueryDragIcon(); | 468 | afx_msg HCURSOR OnQueryDragIcon(); |
458 | afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); | 469 | afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); |
459 | afx_msg void OnOptions(); | 470 | afx_msg void OnOptions(); |
460 | afx_msg void OnTimer(UINT nIDEvent); | 471 | afx_msg void OnTimer(UINT nIDEvent); |
461 | afx_msg void OnExit(); | 472 | afx_msg void OnExit(); |
462 | afx_msg void OnPut(); | 473 | afx_msg void OnPut(); |
463 | afx_msg void OnGet(); | 474 | afx_msg void OnGet(); |
464 | afx_msg void OnDeleteallitemsConnections(NMHDR* pNMHDR, LRESULT* pResult); | 475 | afx_msg void OnDeleteallitemsConnections(NMHDR* pNMHDR, LRESULT* pResult); |
465 | afx_msg void OnDeleteitemConnections(NMHDR* pNMHDR, LRESULT* pResult); | 476 | afx_msg void OnDeleteitemConnections(NMHDR* pNMHDR, LRESULT* pResult); |
466 | afx_msg void OnInsertitemConnections(NMHDR* pNMHDR, LRESULT* pResult); | 477 | afx_msg void OnInsertitemConnections(NMHDR* pNMHDR, LRESULT* pResult); |
467 | afx_msg void OnItemchangedConnections(NMHDR* pNMHDR, LRESULT* pResult); | 478 | afx_msg void OnItemchangedConnections(NMHDR* pNMHDR, LRESULT* pResult); |
468 | afx_msg void OnAbort(); | 479 | afx_msg void OnAbort(); |
469 | afx_msg void OnClose(); | 480 | afx_msg void OnClose(); |
470 | afx_msg void OnTrayShowpumpkinwindow(); | 481 | afx_msg void OnTrayShowpumpkinwindow(); |
471 | afx_msg void OnTrayListen(); | 482 | afx_msg void OnTrayListen(); |
472 | afx_msg void OnTrayExit(); | 483 | afx_msg void OnTrayExit(); |
473 | afx_msg void OnTrayAboutpumpkin(); | 484 | afx_msg void OnTrayAboutpumpkin(); |
474 | afx_msg void OnTrayFetchfile(); | 485 | afx_msg void OnTrayFetchfile(); |
475 | afx_msg void OnTrayHelp(); | 486 | afx_msg void OnTrayHelp(); |
476 | afx_msg void OnTrayOptions(); | 487 | afx_msg void OnTrayOptions(); |
477 | afx_msg void OnTraySendfile(); | 488 | afx_msg void OnTraySendfile(); |
478 | afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos); | 489 | afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos); |
479 | afx_msg void OnSelchangeLog(); | 490 | afx_msg void OnSelchangeLog(); |
480 | afx_msg void OnTrayOpenfilesfolder(); | 491 | afx_msg void OnTrayOpenfilesfolder(); |
481 | afx_msg void OnDropFiles(HDROP hDropInfo); | 492 | afx_msg void OnDropFiles(HDROP hDropInfo); |
482 | virtual void OnCancel(); | 493 | virtual void OnCancel(); |
483 | afx_msg void OnHelp(); | 494 | afx_msg void OnHelp(); |
484 | afx_msg void OnListening(); | 495 | afx_msg void OnListening(); |
496 | afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI); | ||
497 | afx_msg void OnSize(UINT nType, int cx, int cy); | ||
485 | //}}AFX_MSG | 498 | //}}AFX_MSG |
486 | DECLARE_MESSAGE_MAP() | 499 | DECLARE_MESSAGE_MAP() |
487 | }; | 500 | }; |
diff --git a/help/pumpkin.rtf b/help/pumpkin.rtf index abdca4f..505cbf2 100644 --- a/help/pumpkin.rtf +++ b/help/pumpkin.rtf | |||
@@ -1,82 +1,83 @@ | |||
1 | {\rtf1\ansi | 1 | {\rtf1\ansi |
2 | @{\footnote | 2 | @{\footnote |
3 | THIS FILE WAS AUTOMATICALLY GENERATED FROM XML DOCUMENT. | 3 | THIS FILE WAS AUTOMATICALLY GENERATED FROM XML DOCUMENT. |
4 | DO NOT MODIFY THIS FILE DIRECTLY. EDIT XML DOCUMENT INSTEAD | 4 | DO NOT MODIFY THIS FILE DIRECTLY. EDIT XML DOCUMENT INSTEAD |
5 | } | 5 | } |
6 | {\fonttbl{\f0\froman Times New Roman;}{\f1\fswiss Arial;}{\f3\froman Symbol;}}{\colortbl; | 6 | {\fonttbl{\f0\froman Times New Roman;}{\f1\fswiss Arial;}{\f3\froman Symbol;}}{\colortbl; |
7 | \red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0; | 7 | \red0\green0\blue0;\red0\green0\blue255;\red0\green255\blue255;\red0\green255\blue0; |
8 | \red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255; | 8 | \red255\green0\blue255;\red255\green0\blue0;\red255\green255\blue0;\red255\green255\blue255; |
9 | \red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128; | 9 | \red0\green0\blue128;\red0\green128\blue128;\red0\green128\blue0;\red128\green0\blue128; |
10 | \red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;} | 10 | \red128\green0\blue0;\red128\green128\blue0;\red128\green128\blue128;\red192\green192\blue192;} |
11 | 11 | ||
12 | \pard\plain\keepn | 12 | \pard\plain\keepn |
13 | #{\footnote About} | 13 | #{\footnote About} |
14 | ${\footnote About PumpKIN} | 14 | ${\footnote About PumpKIN} |
15 | K{\footnote about} | 15 | K{\footnote about} |
16 | { \f1\fs18\b\sb120 About {\b PumpKIN}} | 16 | { \f1\fs18\b\sb120 About {\b PumpKIN}} |
17 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b PumpKIN} is a program designed to send and receive files over the net while having {\uldb {\b T42}}{\v %!ExecFile("http://kin.klever.net/T42/")} or {\b\cf6 Wintalk} session running using {\i TFTP} ({\uldb {\b RFC1350}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1350.txt")}) protocol. It includes full-functional {\i TFTP} server/client so it may be useful for maintaining {\uldb CISCO}{\v %!ExecFile("http://www.cisco.com/")} routers and other network equipment. | 17 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b PumpKIN} is a program designed to send and receive files over the net while having {\uldb {\b T42}}{\v %!ExecFile("http://kin.klever.net/T42/")} or {\b\cf6 Wintalk} session running using {\i TFTP} ({\uldb {\b RFC1350}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1350.txt")}) protocol. It includes full-functional {\i TFTP} server/client so it may be useful for maintaining {\uldb CISCO}{\v %!ExecFile("http://www.cisco.com/")} routers and other network equipment. |
18 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 | 18 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 |
19 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b {\i Enjoy!}} | 19 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 {\b {\i Enjoy!}} |
20 | { | 20 | { |
21 | \par\pard\plain\sb360\sa120 \f1\fs16 Copyright (c) 1997-2006 {\uldb\cf0 Klever Group (http://www.klever.net/)}{\v %!ExecFile("http://www.klever.net/")} | 21 | \par\pard\plain\sb360\sa120 \f1\fs16 Copyright (c) 1997-2006 {\uldb\cf0 Klever Group (http://www.klever.net/)}{\v %!ExecFile("http://www.klever.net/")} |
22 | \par\qj\sb120\sa120Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | 22 | \par\qj\sb120\sa120Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
23 | \par The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | 23 | \par The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
24 | \par \sa360 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 24 | \par \sa360 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
25 | } | 25 | } |
26 | \page | 26 | \page |
27 | 27 | ||
28 | \pard\plain | 28 | \pard\plain |
29 | #{\footnote News} | 29 | #{\footnote News} |
30 | ${\footnote What's New} | 30 | ${\footnote What's New} |
31 | \par\pard\plain\f1\fs24\qc\cf2\b 2.7 - | 31 | \par\pard\plain\f1\fs24\qc\cf2\b 2.7 - |
32 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Added acess lists based on request IP address and TFTP opcode for automating access policy | 32 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Added acess lists based on request IP address and TFTP opcode for automating access policy |
33 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Added possibility to start/stop TFTP server, while keeping client functionality intact | 33 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Added possibility to start/stop TFTP server, while keeping client functionality intact |
34 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Logging to file | 34 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Logging to file |
35 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Resizable main window | ||
35 | \par\pard\plain\f1\fs24\qc\cf2\b 2.6 - August 6th, 2005 | 36 | \par\pard\plain\f1\fs24\qc\cf2\b 2.6 - August 6th, 2005 |
36 | \par\pard\plain\fi0\li0\f1\fs18 \bullet more robust solution to the backslash/slash dilemma | 37 | \par\pard\plain\fi0\li0\f1\fs18 \bullet more robust solution to the backslash/slash dilemma |
37 | \par\pard\plain\fi0\li0\f1\fs18 \bullet A bit more elaborate error reporting | 38 | \par\pard\plain\fi0\li0\f1\fs18 \bullet A bit more elaborate error reporting |
38 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Fixed uninstall procedure so that it works on XP | 39 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Fixed uninstall procedure so that it works on XP |
39 | \par\pard\plain\f1\fs24\qc\cf2\b 2.5 - July 11th, 2004 | 40 | \par\pard\plain\f1\fs24\qc\cf2\b 2.5 - July 11th, 2004 |
40 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Change of {\uldb license}{\v About} and opening the source. | 41 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Change of {\uldb license}{\v About} and opening the source. |
41 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Minor cosmetic changes | 42 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Minor cosmetic changes |
42 | \par\pard\plain\f1\fs24\qc\cf2\b 2.0 - June 13th, 1998 | 43 | \par\pard\plain\f1\fs24\qc\cf2\b 2.0 - June 13th, 1998 |
43 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Sounds customization. Now you can customize {\b PumpKIN} bells and whistles or turn them off completely. | 44 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Sounds customization. Now you can customize {\b PumpKIN} bells and whistles or turn them off completely. |
44 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Previous version of {\b PumpKIN} had a bug causing it to misbehave when you're requesting file from remote {\i tftp} server using {\b IP Address} (as opposed to {\b hostname}). | 45 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Previous version of {\b PumpKIN} had a bug causing it to misbehave when you're requesting file from remote {\i tftp} server using {\b IP Address} (as opposed to {\b hostname}). |
45 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Typo causing {\b PumpKIN} to log outgoing request in reverse (i.e. {\i Requesting 'hostname' from 'filename'}) fixed. | 46 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Typo causing {\b PumpKIN} to log outgoing request in reverse (i.e. {\i Requesting 'hostname' from 'filename'}) fixed. |
46 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Something else that you may not notice and I can not remember. | 47 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Something else that you may not notice and I can not remember. |
47 | \par\pard\plain\f1\fs24\qc\cf2\b 1.5 - February 12th, 1998 | 48 | \par\pard\plain\f1\fs24\qc\cf2\b 1.5 - February 12th, 1998 |
48 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Transfer resumes. No checking on file contents is done, so it's up to you to decide whether you want to start transmission from the beginning or resume unfinished transfer. | 49 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Transfer resumes. No checking on file contents is done, so it's up to you to decide whether you want to start transmission from the beginning or resume unfinished transfer. |
49 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Support for {\b block size}, {\b trasnfer size} and {\b transfer timeout} options as described in {\uldb {\b RFC1782}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1782.txt")}, {\uldb {\b RFC1783}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1783.txt")} and {\uldb {\b RFC1784}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1784.txt")}. I'm not sure if there are any other {\i TFTP} implementations supporting this, but at least it makes sense if you use {\b PumpKIN} on both ends. | 50 | \par\pard\plain\fi0\li0\f1\fs18 \bullet Support for {\b block size}, {\b trasnfer size} and {\b transfer timeout} options as described in {\uldb {\b RFC1782}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1782.txt")}, {\uldb {\b RFC1783}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1783.txt")} and {\uldb {\b RFC1784}}{\v %!ExecFile("http://www.rfc-editor.org/rfc/rfc1784.txt")}. I'm not sure if there are any other {\i TFTP} implementations supporting this, but at least it makes sense if you use {\b PumpKIN} on both ends. |
50 | \par\pard\plain\fi0\li0\f1\fs18 \bullet New Install program | 51 | \par\pard\plain\fi0\li0\f1\fs18 \bullet New Install program |
51 | \page | 52 | \page |
52 | 53 | ||
53 | \pard\plain\keepn | 54 | \pard\plain\keepn |
54 | #{\footnote Using} | 55 | #{\footnote Using} |
55 | ${\footnote Using PumpKIN} | 56 | ${\footnote Using PumpKIN} |
56 | { \f1\fs18\b\sb120 Using {\b PumpKIN}} | 57 | { \f1\fs18\b\sb120 Using {\b PumpKIN}} |
57 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 This is a simple program for file exchange between two parties. It allows you to send files over the network to your party while having a {\uldb {\b T42}}{\v %!ExecFile("http://kin.klever.net/T42/")} or {\b\cf6 Wintalk} conversation. It uses open sessions to determine IP address of your party. Also you may use it as a {\i TFTP} client/server by itself. To get/put files from/to {\i TFTP} server you need to enter host name/IP address manually in the {\uldb Request Dialog}{\v Request}. | 58 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 This is a simple program for file exchange between two parties. It allows you to send files over the network to your party while having a {\uldb {\b T42}}{\v %!ExecFile("http://kin.klever.net/T42/")} or {\b\cf6 Wintalk} conversation. It uses open sessions to determine IP address of your party. Also you may use it as a {\i TFTP} client/server by itself. To get/put files from/to {\i TFTP} server you need to enter host name/IP address manually in the {\uldb Request Dialog}{\v Request}. |
58 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 To Abort transfer(s) currently in progress - select transfer(s) you want to terminate in the list and click {\b Abort xfer} button. | 59 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 To Abort transfer(s) currently in progress - select transfer(s) you want to terminate in the list and click {\b Abort xfer} button. |
59 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 You may want to hide {\b PumpKIN} window and leave it as a tray icon only. Just click the \{bmct pumpkin.bmp\} icon in the tray or simply close the window. | 60 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 You may want to hide {\b PumpKIN} window and leave it as a tray icon only. Just click the \{bmct pumpkin.bmp\} icon in the tray or simply close the window. |
60 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 Use {\uldb Options}{\v Options} button to set {\b PumpKIN} options. | 61 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 Use {\uldb Options}{\v Options} button to set {\b PumpKIN} options. |
61 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 You can start and stop {\b PumpKIN}'s {\i TFTP} server by checking and unchecking the {\b Server is running} checkbox in the lower right corner of main {\b PumpKIN} window. | 62 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 You can start and stop {\b PumpKIN}'s {\i TFTP} server by checking and unchecking the {\b Server is running} checkbox in the lower right corner of main {\b PumpKIN} window. |
62 | \page | 63 | \page |
63 | 64 | ||
64 | \pard\plain\keepn | 65 | \pard\plain\keepn |
65 | #{\footnote ConfirmRRQ} | 66 | #{\footnote ConfirmRRQ} |
66 | ${\footnote Confirm Read Request Dialog} | 67 | ${\footnote Confirm Read Request Dialog} |
67 | { \f1\fs18\b\sb120 Confirm Read Request Dialog} | 68 | { \f1\fs18\b\sb120 Confirm Read Request Dialog} |
68 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 When the file is requested from your {\i TFTP} server you may choose to {\b Grant Access} to this file or to {\b Deny Access}. If you hesitate to answer for {\uldb {\b Confirmation timeout}}{\v ConfirmationTimeout} ({\i default - 30 seconds}) {\b PumpKIN} defaults to denial of all requests. | 69 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 When the file is requested from your {\i TFTP} server you may choose to {\b Grant Access} to this file or to {\b Deny Access}. If you hesitate to answer for {\uldb {\b Confirmation timeout}}{\v ConfirmationTimeout} ({\i default - 30 seconds}) {\b PumpKIN} defaults to denial of all requests. |
69 | \page | 70 | \page |
70 | 71 | ||
71 | \pard\plain\keepn | 72 | \pard\plain\keepn |
72 | #{\footnote ConfirmWRQ} | 73 | #{\footnote ConfirmWRQ} |
73 | ${\footnote Confirm Write Request Dialog} | 74 | ${\footnote Confirm Write Request Dialog} |
74 | { \f1\fs18\b\sb120 Confirm Write Request Dialog} | 75 | { \f1\fs18\b\sb120 Confirm Write Request Dialog} |
75 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 Whenever your party sends you a file you have always a choice to accept it or not. You can also save the file under a different name by choosing the {\b Rename} option. If you already have file with such name you may chose to {\b resume} transfer. No checking on file contents is done. This option may or may not work depending on remote implementation of protocol. It does work if you use {\b PumpKIN} on both ends. If you are still unsure for {\uldb {\b Confirmation timeout}}{\v ConfirmationTimeOut} ({\i default - 30 seconds}) {\b PumpKIN} will make safe decision for you (deny). | 76 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 Whenever your party sends you a file you have always a choice to accept it or not. You can also save the file under a different name by choosing the {\b Rename} option. If you already have file with such name you may chose to {\b resume} transfer. No checking on file contents is done. This option may or may not work depending on remote implementation of protocol. It does work if you use {\b PumpKIN} on both ends. If you are still unsure for {\uldb {\b Confirmation timeout}}{\v ConfirmationTimeOut} ({\i default - 30 seconds}) {\b PumpKIN} will make safe decision for you (deny). |
76 | \page | 77 | \page |
77 | 78 | ||
78 | \pard\plain\keepn | 79 | \pard\plain\keepn |
79 | #{\footnote Request} | 80 | #{\footnote Request} |
80 | ${\footnote Request Dialog} | 81 | ${\footnote Request Dialog} |
81 | { \f1\fs18\b\sb120 Request Dialog} | 82 | { \f1\fs18\b\sb120 Request Dialog} |
82 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 Request dialog is aimed to let you form read or write request. You may set the following options:\pard | 83 | \par\sa120\sb120\qj\pard \f1\fs18\sb120 Request dialog is aimed to let you form read or write request. You may set the following options:\pard |
diff --git a/help/pumpkin.xml b/help/pumpkin.xml index 46e3bbc..5c951bb 100644 --- a/help/pumpkin.xml +++ b/help/pumpkin.xml | |||
@@ -1,63 +1,64 @@ | |||
1 | <?xml version="1.0"?> | 1 | <?xml version="1.0"?> |
2 | <winhelp> | 2 | <winhelp> |
3 | <topic id="About" title="About PumpKIN" keywords="about"> | 3 | <topic id="About" title="About PumpKIN" keywords="about"> |
4 | <heading scroll="no">About <kin>PumpKIN</kin></heading> | 4 | <heading scroll="no">About <kin>PumpKIN</kin></heading> |
5 | <p><kin>PumpKIN</kin> is a program designed to send and receive files over the net while having <kin href="http://kin.klever.net/T42/">T42</kin> or <product>Wintalk</product> session running using <term>TFTP</term> (<rfc num="1350"/>) protocol. It includes full-functional <term>TFTP</term> server/client so it may be useful for maintaining <a href="http://www.cisco.com/">CISCO</a> routers and other network equipment.</p> | 5 | <p><kin>PumpKIN</kin> is a program designed to send and receive files over the net while having <kin href="http://kin.klever.net/T42/">T42</kin> or <product>Wintalk</product> session running using <term>TFTP</term> (<rfc num="1350"/>) protocol. It includes full-functional <term>TFTP</term> server/client so it may be useful for maintaining <a href="http://www.cisco.com/">CISCO</a> routers and other network equipment.</p> |
6 | <p/> | 6 | <p/> |
7 | <p><b><i>Enjoy!</i></b></p> | 7 | <p><b><i>Enjoy!</i></b></p> |
8 | <license years="1997-2006"/> | 8 | <license years="1997-2006"/> |
9 | <credist/> | 9 | <credist/> |
10 | </topic> | 10 | </topic> |
11 | <topic id="News" title="What's New"> | 11 | <topic id="News" title="What's New"> |
12 | <newsfor version="2.7" date=""> | 12 | <newsfor version="2.7" date=""> |
13 | <ni>Added acess lists based on request IP address and TFTP opcode for automating access policy</ni> | 13 | <ni>Added acess lists based on request IP address and TFTP opcode for automating access policy</ni> |
14 | <ni>Added possibility to start/stop TFTP server, while keeping client functionality intact</ni> | 14 | <ni>Added possibility to start/stop TFTP server, while keeping client functionality intact</ni> |
15 | <ni>Logging to file</ni> | 15 | <ni>Logging to file</ni> |
16 | <ni>Resizable main window</ni> | ||
16 | </newsfor> | 17 | </newsfor> |
17 | <newsfor version="2.6" date="August 6th, 2005"> | 18 | <newsfor version="2.6" date="August 6th, 2005"> |
18 | <ni>more robust solution to the backslash/slash dilemma</ni> | 19 | <ni>more robust solution to the backslash/slash dilemma</ni> |
19 | <ni>A bit more elaborate error reporting</ni> | 20 | <ni>A bit more elaborate error reporting</ni> |
20 | <ni>Fixed uninstall procedure so that it works on XP</ni> | 21 | <ni>Fixed uninstall procedure so that it works on XP</ni> |
21 | </newsfor> | 22 | </newsfor> |
22 | <newsfor version="2.5" date="July 11th, 2004"> | 23 | <newsfor version="2.5" date="July 11th, 2004"> |
23 | <ni>Change of <a href="#About">license</a> and opening the source.</ni> | 24 | <ni>Change of <a href="#About">license</a> and opening the source.</ni> |
24 | <ni>Minor cosmetic changes</ni> | 25 | <ni>Minor cosmetic changes</ni> |
25 | </newsfor> | 26 | </newsfor> |
26 | <newsfor version="2.0" date="June 13th, 1998"> | 27 | <newsfor version="2.0" date="June 13th, 1998"> |
27 | <ni>Sounds customization. Now you can customize <kin>PumpKIN</kin> bells and whistles or turn them off completely.</ni> | 28 | <ni>Sounds customization. Now you can customize <kin>PumpKIN</kin> bells and whistles or turn them off completely.</ni> |
28 | <ni>Previous version of <kin>PumpKIN</kin> had a bug causing it to misbehave when you're requesting file from remote <term>tftp</term> server using <b>IP Address</b> (as opposed to <b>hostname</b>).</ni> | 29 | <ni>Previous version of <kin>PumpKIN</kin> had a bug causing it to misbehave when you're requesting file from remote <term>tftp</term> server using <b>IP Address</b> (as opposed to <b>hostname</b>).</ni> |
29 | <ni>Typo causing <kin>PumpKIN</kin> to log outgoing request in reverse (i.e. <i>Requesting 'hostname' from 'filename'</i>) fixed.</ni> | 30 | <ni>Typo causing <kin>PumpKIN</kin> to log outgoing request in reverse (i.e. <i>Requesting 'hostname' from 'filename'</i>) fixed.</ni> |
30 | <ni>Something else that you may not notice and I can not remember.</ni> | 31 | <ni>Something else that you may not notice and I can not remember.</ni> |
31 | </newsfor> | 32 | </newsfor> |
32 | <newsfor version="1.5" date="February 12th, 1998"> | 33 | <newsfor version="1.5" date="February 12th, 1998"> |
33 | <ni>Transfer resumes. No checking on file contents is done, so it's up to you to decide whether you want to start transmission from the beginning or resume unfinished transfer.</ni> | 34 | <ni>Transfer resumes. No checking on file contents is done, so it's up to you to decide whether you want to start transmission from the beginning or resume unfinished transfer.</ni> |
34 | <ni>Support for <b>block size</b>, <b>trasnfer size</b> and <b>transfer timeout</b> options as described in <rfc num="1782"/>, <rfc num="1783"/> and <rfc num="1784"/>. I'm not sure if there are any other <term>TFTP</term> implementations supporting this, but at least it makes sense if you use <kin>PumpKIN</kin> on both ends.</ni> | 35 | <ni>Support for <b>block size</b>, <b>trasnfer size</b> and <b>transfer timeout</b> options as described in <rfc num="1782"/>, <rfc num="1783"/> and <rfc num="1784"/>. I'm not sure if there are any other <term>TFTP</term> implementations supporting this, but at least it makes sense if you use <kin>PumpKIN</kin> on both ends.</ni> |
35 | <ni>New Install program</ni> | 36 | <ni>New Install program</ni> |
36 | </newsfor> | 37 | </newsfor> |
37 | </topic> | 38 | </topic> |
38 | <topic id="Using" title="Using PumpKIN"> | 39 | <topic id="Using" title="Using PumpKIN"> |
39 | <heading scroll="no">Using <kin>PumpKIN</kin></heading> | 40 | <heading scroll="no">Using <kin>PumpKIN</kin></heading> |
40 | <p>This is a simple program for file exchange between two parties. It allows you to send files over the network to your party while having a <kin href="http://kin.klever.net/T42/">T42</kin> or <product>Wintalk</product> conversation. It uses open sessions to determine IP address of your party. Also you may use it as a <term>TFTP</term> client/server by itself. To get/put files from/to <term>TFTP</term> server you need to enter host name/IP address manually in the <a href="#Request">Request Dialog</a>.</p> | 41 | <p>This is a simple program for file exchange between two parties. It allows you to send files over the network to your party while having a <kin href="http://kin.klever.net/T42/">T42</kin> or <product>Wintalk</product> conversation. It uses open sessions to determine IP address of your party. Also you may use it as a <term>TFTP</term> client/server by itself. To get/put files from/to <term>TFTP</term> server you need to enter host name/IP address manually in the <a href="#Request">Request Dialog</a>.</p> |
41 | <p>To Abort transfer(s) currently in progress - select transfer(s) you want to terminate in the list and click <b>Abort xfer</b> button.</p> | 42 | <p>To Abort transfer(s) currently in progress - select transfer(s) you want to terminate in the list and click <b>Abort xfer</b> button.</p> |
42 | <p>You may want to hide <kin>PumpKIN</kin> window and leave it as a tray icon only. Just click the <image source="pumpkin.bmp"/> icon in the tray or simply close the window.</p> | 43 | <p>You may want to hide <kin>PumpKIN</kin> window and leave it as a tray icon only. Just click the <image source="pumpkin.bmp"/> icon in the tray or simply close the window.</p> |
43 | <p>Use <a href="#Options">Options</a> button to set <kin>PumpKIN</kin> options.</p> | 44 | <p>Use <a href="#Options">Options</a> button to set <kin>PumpKIN</kin> options.</p> |
44 | <p>You can start and stop <kin>PumpKIN</kin>'s <term>TFTP</term> server by checking and unchecking the <b>Server is running</b> checkbox in the lower right corner of main <kin>PumpKIN</kin> window.</p> | 45 | <p>You can start and stop <kin>PumpKIN</kin>'s <term>TFTP</term> server by checking and unchecking the <b>Server is running</b> checkbox in the lower right corner of main <kin>PumpKIN</kin> window.</p> |
45 | </topic> | 46 | </topic> |
46 | <topic id="ConfirmRRQ" title="Confirm Read Request Dialog"> | 47 | <topic id="ConfirmRRQ" title="Confirm Read Request Dialog"> |
47 | <heading scroll="no">Confirm Read Request Dialog</heading> | 48 | <heading scroll="no">Confirm Read Request Dialog</heading> |
48 | <p>When the file is requested from your <term>TFTP</term> server you may choose to <b>Grant Access</b> to this file or to <b>Deny Access</b>. If you hesitate to answer for <a href="#ConfirmationTimeout"><b>Confirmation timeout</b></a> (<i>default - 30 seconds</i>) <kin>PumpKIN</kin> defaults to denial of all requests.</p> | 49 | <p>When the file is requested from your <term>TFTP</term> server you may choose to <b>Grant Access</b> to this file or to <b>Deny Access</b>. If you hesitate to answer for <a href="#ConfirmationTimeout"><b>Confirmation timeout</b></a> (<i>default - 30 seconds</i>) <kin>PumpKIN</kin> defaults to denial of all requests.</p> |
49 | </topic> | 50 | </topic> |
50 | <topic id="ConfirmWRQ" title="Confirm Write Request Dialog"> | 51 | <topic id="ConfirmWRQ" title="Confirm Write Request Dialog"> |
51 | <heading scroll="no">Confirm Write Request Dialog</heading> | 52 | <heading scroll="no">Confirm Write Request Dialog</heading> |
52 | <p>Whenever your party sends you a file you have always a choice to accept it or not. You can also save the file under a different name by choosing the <b>Rename</b> option. If you already have file with such name you may chose to <b>resume</b> transfer. No checking on file contents is done. This option may or may not work depending on remote implementation of protocol. It does work if you use <kin>PumpKIN</kin> on both ends. If you are still unsure for <a href="#ConfirmationTimeOut"><b>Confirmation timeout</b></a> (<i>default - 30 seconds</i>) <kin>PumpKIN</kin> will make safe decision for you (deny).</p> | 53 | <p>Whenever your party sends you a file you have always a choice to accept it or not. You can also save the file under a different name by choosing the <b>Rename</b> option. If you already have file with such name you may chose to <b>resume</b> transfer. No checking on file contents is done. This option may or may not work depending on remote implementation of protocol. It does work if you use <kin>PumpKIN</kin> on both ends. If you are still unsure for <a href="#ConfirmationTimeOut"><b>Confirmation timeout</b></a> (<i>default - 30 seconds</i>) <kin>PumpKIN</kin> will make safe decision for you (deny).</p> |
53 | </topic> | 54 | </topic> |
54 | <topic id="Request" title="Request Dialog"> | 55 | <topic id="Request" title="Request Dialog"> |
55 | <heading scroll="no">Request Dialog</heading> | 56 | <heading scroll="no">Request Dialog</heading> |
56 | <p>Request dialog is aimed to let you form read or write request. You may set the following options:</p> | 57 | <p>Request dialog is aimed to let you form read or write request. You may set the following options:</p> |
57 | <ul> | 58 | <ul> |
58 | <li><b>Local File</b> - You can change the name of the file you're sending (or destination in case you're receiving) right here. You may also use <b>Browse</b> button to select the file.</li> | 59 | <li><b>Local File</b> - You can change the name of the file you're sending (or destination in case you're receiving) right here. You may also use <b>Browse</b> button to select the file.</li> |
59 | <li><b>Remote File</b> Specifies the name of file on the remote host you're requesting (in case of read request) or the name of file you want your file to appear as (in case of write request).</li> | 60 | <li><b>Remote File</b> Specifies the name of file on the remote host you're requesting (in case of read request) or the name of file you want your file to appear as (in case of write request).</li> |
60 | <li><b>Remote Host</b> is your party's host or <term>TFTP</term> server you're requesting file from/sending file to. To refresh the list of your talk windows use <b>REFRESH</b> button.</li> | 61 | <li><b>Remote Host</b> is your party's host or <term>TFTP</term> server you're requesting file from/sending file to. To refresh the list of your talk windows use <b>REFRESH</b> button.</li> |
61 | <li><b>Type</b> is the type of transfer as defined in <rfc num="1350"/>. Doesn't mean much, really. Defined types are '<i>octet</i>' or '<i>netascii</i>'. Default is '<i>octet</i>'.</li> | 62 | <li><b>Type</b> is the type of transfer as defined in <rfc num="1350"/>. Doesn't mean much, really. Defined types are '<i>octet</i>' or '<i>netascii</i>'. Default is '<i>octet</i>'.</li> |
62 | <li><b>Block Size</b> - Use this block size if remote is <rfc num="1783"/>-compliant. If remote doesn't support this option <kin>PumpKIN</kin> will fallback to 512 bytes per block.</li> | 63 | <li><b>Block Size</b> - Use this block size if remote is <rfc num="1783"/>-compliant. If remote doesn't support this option <kin>PumpKIN</kin> will fallback to 512 bytes per block.</li> |
63 | </ul> | 64 | </ul> |
diff --git a/pumpkin.clw b/pumpkin.clw index 5344bfd..213d8c1 100644 --- a/pumpkin.clw +++ b/pumpkin.clw | |||
@@ -1,185 +1,185 @@ | |||
1 | ; CLW file contains information for the MFC ClassWizard | 1 | ; CLW file contains information for the MFC ClassWizard |
2 | 2 | ||
3 | [General Info] | 3 | [General Info] |
4 | Version=1 | 4 | Version=1 |
5 | LastClass=CPropsServer | 5 | LastClass=CPumpKINDlg |
6 | LastTemplate=CComboBox | 6 | LastTemplate=CComboBox |
7 | NewFileInclude1=#include "stdafx.h" | 7 | NewFileInclude1=#include "stdafx.h" |
8 | NewFileInclude2=#include "PumpKIN.h" | 8 | NewFileInclude2=#include "PumpKIN.h" |
9 | 9 | ||
10 | ClassCount=14 | 10 | ClassCount=14 |
11 | Class1=CPumpKINApp | 11 | Class1=CPumpKINApp |
12 | Class2=CPumpKINDlg | 12 | Class2=CPumpKINDlg |
13 | Class3=CAboutDlg | 13 | Class3=CAboutDlg |
14 | 14 | ||
15 | ResourceCount=10 | 15 | ResourceCount=10 |
16 | Resource1=IDD_REQUEST | 16 | Resource1=IDD_REQUEST |
17 | Resource2=IDD_PROPS_NETWORK | 17 | Resource2=IDD_PROPS_NETWORK |
18 | Resource3=IDD_CONFIRM_RRQ | 18 | Resource3=IDD_CONFIRM_RRQ |
19 | Resource4=IDD_ABOUTBOX | 19 | Resource4=IDD_PROPS_SERVER |
20 | Class4=CPropsServer | 20 | Class4=CPropsServer |
21 | Class5=CPropsNetwork | 21 | Class5=CPropsNetwork |
22 | Resource5=IDD_CONFIRM_WRQ | 22 | Resource5=IDD_CONFIRM_WRQ |
23 | Resource6=IDD_PROPS_ACL | 23 | Resource6=IDD_PROPS_ACL |
24 | Class6=CConfirmRRQDlg | 24 | Class6=CConfirmRRQDlg |
25 | Class7=CConfirmWRQDlg | 25 | Class7=CConfirmWRQDlg |
26 | Resource7=IDD_PUMPKIN_DIALOG | 26 | Resource7=IDD_ABOUTBOX |
27 | Class8=CRequestDlg | 27 | Class8=CRequestDlg |
28 | Class9=CResolver | 28 | Class9=CResolver |
29 | Class10=CRetrier | 29 | Class10=CRetrier |
30 | Class11=CTrayer | 30 | Class11=CTrayer |
31 | Resource8=IDD_PROPS_SOUNDS | 31 | Resource8=IDD_PROPS_SOUNDS |
32 | Class12=CPropsSounds | 32 | Class12=CPropsSounds |
33 | Resource9=IDM_POPUPS | 33 | Resource9=IDM_POPUPS |
34 | Class13=CPropsACL | 34 | Class13=CPropsACL |
35 | Class14=CACLTargetCombo | 35 | Class14=CACLTargetCombo |
36 | Resource10=IDD_PROPS_SERVER | 36 | Resource10=IDD_PUMPKIN_DIALOG |
37 | 37 | ||
38 | [CLS:CPumpKINApp] | 38 | [CLS:CPumpKINApp] |
39 | Type=0 | 39 | Type=0 |
40 | HeaderFile=PumpKIN.h | 40 | HeaderFile=PumpKIN.h |
41 | ImplementationFile=PumpKIN.cpp | 41 | ImplementationFile=PumpKIN.cpp |
42 | Filter=N | 42 | Filter=N |
43 | 43 | ||
44 | [CLS:CPumpKINDlg] | 44 | [CLS:CPumpKINDlg] |
45 | Type=0 | 45 | Type=0 |
46 | HeaderFile=PumpKINDlg.h | 46 | HeaderFile=PumpKINDlg.h |
47 | ImplementationFile=PumpKINDlg.cpp | 47 | ImplementationFile=PumpKINDlg.cpp |
48 | Filter=W | 48 | Filter=W |
49 | BaseClass=CDialog | 49 | BaseClass=CDialog |
50 | VirtualFilter=dWC | 50 | VirtualFilter=dWC |
51 | LastObject=CPumpKINDlg | 51 | LastObject=CPumpKINDlg |
52 | 52 | ||
53 | [CLS:CAboutDlg] | 53 | [CLS:CAboutDlg] |
54 | Type=0 | 54 | Type=0 |
55 | HeaderFile=PumpKINDlg.h | 55 | HeaderFile=PumpKINDlg.h |
56 | ImplementationFile=PumpKINDlg.cpp | 56 | ImplementationFile=PumpKINDlg.cpp |
57 | Filter=D | 57 | Filter=D |
58 | BaseClass=CDialog | 58 | BaseClass=CDialog |
59 | VirtualFilter=dWC | 59 | VirtualFilter=dWC |
60 | LastObject=CAboutDlg | 60 | LastObject=CAboutDlg |
61 | 61 | ||
62 | [DLG:IDD_ABOUTBOX] | 62 | [DLG:IDD_ABOUTBOX] |
63 | Type=1 | 63 | Type=1 |
64 | Class=CAboutDlg | 64 | Class=CAboutDlg |
65 | ControlCount=5 | 65 | ControlCount=5 |
66 | Control1=IDC_STATIC,static,1342177283 | 66 | Control1=IDC_STATIC,static,1342177283 |
67 | Control2=IDC_STATIC,static,1342308480 | 67 | Control2=IDC_STATIC,static,1342308480 |
68 | Control3=IDC_STATIC,static,1342308352 | 68 | Control3=IDC_STATIC,static,1342308352 |
69 | Control4=IDOK,button,1342373889 | 69 | Control4=IDOK,button,1342373889 |
70 | Control5=IDC_KLEVERNET,button,1342242816 | 70 | Control5=IDC_KLEVERNET,button,1342242816 |
71 | 71 | ||
72 | [DLG:IDD_PUMPKIN_DIALOG] | 72 | [DLG:IDD_PUMPKIN_DIALOG] |
73 | Type=1 | 73 | Type=1 |
74 | Class=CPumpKINDlg | 74 | Class=CPumpKINDlg |
75 | ControlCount=10 | 75 | ControlCount=10 |
76 | Control1=IDC_CONNECTIONS,SysListView32,1350631681 | 76 | Control1=IDC_CONNECTIONS,SysListView32,1350631681 |
77 | Control2=IDC_GET,button,1342259200 | 77 | Control2=IDC_GET,button,1342259200 |
78 | Control3=IDC_PUT,button,1342259200 | 78 | Control3=IDC_PUT,button,1342259200 |
79 | Control4=IDC_ABORT,button,1342259200 | 79 | Control4=IDC_ABORT,button,1342259200 |
80 | Control5=IDC_OPTIONS,button,1342259200 | 80 | Control5=IDC_OPTIONS,button,1342259200 |
81 | Control6=IDC_EXIT,button,1342259200 | 81 | Control6=IDC_EXIT,button,1342259200 |
82 | Control7=ID_HELP,button,1342259200 | 82 | Control7=ID_HELP,button,1342259200 |
83 | Control8=IDC_LOG,listbox,1353728129 | 83 | Control8=IDC_LOG,listbox,1353728385 |
84 | Control9=IDCANCEL,button,1073741824 | 84 | Control9=IDCANCEL,button,1073741824 |
85 | Control10=IDC_LISTENING,button,1342275619 | 85 | Control10=IDC_LISTENING,button,1342275619 |
86 | 86 | ||
87 | [DLG:IDD_PROPS_SERVER] | 87 | [DLG:IDD_PROPS_SERVER] |
88 | Type=1 | 88 | Type=1 |
89 | Class=CPropsServer | 89 | Class=CPropsServer |
90 | ControlCount=18 | 90 | ControlCount=18 |
91 | Control1=IDC_STATIC,button,1342177287 | 91 | Control1=IDC_STATIC,button,1342177287 |
92 | Control2=IDC_TFTPROOT,edit,1350631552 | 92 | Control2=IDC_TFTPROOT,edit,1350631552 |
93 | Control3=IDC_BROWSE,button,1342242880 | 93 | Control3=IDC_BROWSE,button,1342242880 |
94 | Control4=IDC_TFTPSUBDIRS,button,1342242819 | 94 | Control4=IDC_TFTPSUBDIRS,button,1342242819 |
95 | Control5=IDC_STATIC,button,1342177287 | 95 | Control5=IDC_STATIC,button,1342177287 |
96 | Control6=IDC_RRQ_GIVEALL,button,1342324745 | 96 | Control6=IDC_RRQ_GIVEALL,button,1342324745 |
97 | Control7=IDC_RRQ_ALWAYSCONFIRM,button,1342193673 | 97 | Control7=IDC_RRQ_ALWAYSCONFIRM,button,1342193673 |
98 | Control8=IDC_RRQ_DENYALL,button,1342193673 | 98 | Control8=IDC_RRQ_DENYALL,button,1342193673 |
99 | Control9=IDC_STATIC,button,1342308359 | 99 | Control9=IDC_STATIC,button,1342308359 |
100 | Control10=IDC_WRQ_TAKEALL,button,1342308361 | 100 | Control10=IDC_WRQ_TAKEALL,button,1342308361 |
101 | Control11=IDC_WRQ_PROMPTEXISTING,button,1342177289 | 101 | Control11=IDC_WRQ_PROMPTEXISTING,button,1342177289 |
102 | Control12=IDC_WRQ_ALWAYSCONFIRM,button,1342177289 | 102 | Control12=IDC_WRQ_ALWAYSCONFIRM,button,1342177289 |
103 | Control13=IDC_WRQ_DENYALL,button,1342177289 | 103 | Control13=IDC_WRQ_DENYALL,button,1342177289 |
104 | Control14=IDC_STATIC,static,1342308609 | 104 | Control14=IDC_STATIC,static,1342308609 |
105 | Control15=IDC_PROMPTTIMEOUT,msctls_trackbar32,1342242823 | 105 | Control15=IDC_PROMPTTIMEOUT,msctls_trackbar32,1342242823 |
106 | Control16=IDC_STATIC,button,1342177287 | 106 | Control16=IDC_STATIC,button,1342177287 |
107 | Control17=IDC_LOGFILE,edit,1350631552 | 107 | Control17=IDC_LOGFILE,edit,1350631552 |
108 | Control18=IDC_LOGFILE_BROWSE,button,1342242880 | 108 | Control18=IDC_LOGFILE_BROWSE,button,1342242880 |
109 | 109 | ||
110 | [DLG:IDD_PROPS_NETWORK] | 110 | [DLG:IDD_PROPS_NETWORK] |
111 | Type=1 | 111 | Type=1 |
112 | Class=CPropsNetwork | 112 | Class=CPropsNetwork |
113 | ControlCount=15 | 113 | ControlCount=15 |
114 | Control1=IDC_STATIC,button,1342177287 | 114 | Control1=IDC_STATIC,button,1342177287 |
115 | Control2=IDC_STATIC,static,1342308354 | 115 | Control2=IDC_STATIC,static,1342308354 |
116 | Control3=IDC_LISTENPORT,edit,1350631552 | 116 | Control3=IDC_LISTENPORT,edit,1350631552 |
117 | Control4=IDC_LISTENSPIN,msctls_updown32,1342177463 | 117 | Control4=IDC_LISTENSPIN,msctls_updown32,1342177463 |
118 | Control5=IDC_STATIC,static,1342308354 | 118 | Control5=IDC_STATIC,static,1342308354 |
119 | Control6=IDC_SPEAKPORT,edit,1350631552 | 119 | Control6=IDC_SPEAKPORT,edit,1350631552 |
120 | Control7=IDC_SPEAKSPIN,msctls_updown32,1342177463 | 120 | Control7=IDC_SPEAKSPIN,msctls_updown32,1342177463 |
121 | Control8=IDC_STATIC,static,1342308352 | 121 | Control8=IDC_STATIC,static,1342308352 |
122 | Control9=IDC_TIMEOUT,edit,1350639744 | 122 | Control9=IDC_TIMEOUT,edit,1350639744 |
123 | Control10=IDC_TIMESPIN,msctls_updown32,1342177463 | 123 | Control10=IDC_TIMESPIN,msctls_updown32,1342177463 |
124 | Control11=IDC_STATIC,static,1342308352 | 124 | Control11=IDC_STATIC,static,1342308352 |
125 | Control12=IDC_STATIC,static,1342308352 | 125 | Control12=IDC_STATIC,static,1342308352 |
126 | Control13=IDC_STATIC,static,1342308352 | 126 | Control13=IDC_STATIC,static,1342308352 |
127 | Control14=IDC_BLOCKSIZE,edit,1350639744 | 127 | Control14=IDC_BLOCKSIZE,edit,1350639744 |
128 | Control15=IDC_BSIZESPIN,msctls_updown32,1342177463 | 128 | Control15=IDC_BSIZESPIN,msctls_updown32,1342177463 |
129 | 129 | ||
130 | [CLS:CPropsServer] | 130 | [CLS:CPropsServer] |
131 | Type=0 | 131 | Type=0 |
132 | HeaderFile=PropsServer.h | 132 | HeaderFile=PropsServer.h |
133 | ImplementationFile=PropsServer.cpp | 133 | ImplementationFile=PropsServer.cpp |
134 | BaseClass=CPropertyPage | 134 | BaseClass=CPropertyPage |
135 | Filter=D | 135 | Filter=D |
136 | VirtualFilter=idWC | 136 | VirtualFilter=idWC |
137 | LastObject=IDC_LOGFILE_BROWSE | 137 | LastObject=CPropsServer |
138 | 138 | ||
139 | [CLS:CPropsNetwork] | 139 | [CLS:CPropsNetwork] |
140 | Type=0 | 140 | Type=0 |
141 | HeaderFile=PropsNetwork.h | 141 | HeaderFile=PropsNetwork.h |
142 | ImplementationFile=PropsNetwork.cpp | 142 | ImplementationFile=PropsNetwork.cpp |
143 | BaseClass=CPropertyPage | 143 | BaseClass=CPropertyPage |
144 | Filter=D | 144 | Filter=D |
145 | VirtualFilter=idWC | 145 | VirtualFilter=idWC |
146 | LastObject=IDC_BLOCKSIZE | 146 | LastObject=IDC_BLOCKSIZE |
147 | 147 | ||
148 | [DLG:IDD_CONFIRM_RRQ] | 148 | [DLG:IDD_CONFIRM_RRQ] |
149 | Type=1 | 149 | Type=1 |
150 | Class=CConfirmRRQDlg | 150 | Class=CConfirmRRQDlg |
151 | ControlCount=9 | 151 | ControlCount=9 |
152 | Control1=IDOK,button,1342242817 | 152 | Control1=IDOK,button,1342242817 |
153 | Control2=IDCANCEL,button,1342242816 | 153 | Control2=IDCANCEL,button,1342242816 |
154 | Control3=IDC_STATIC,static,1342308352 | 154 | Control3=IDC_STATIC,static,1342308352 |
155 | Control4=IDC_HOST,static,1350701313 | 155 | Control4=IDC_HOST,static,1350701313 |
156 | Control5=IDC_STATIC,static,1342308353 | 156 | Control5=IDC_STATIC,static,1342308353 |
157 | Control6=IDC_FILE,static,1350701313 | 157 | Control6=IDC_FILE,static,1350701313 |
158 | Control7=IDC_STATIC,static,1342177296 | 158 | Control7=IDC_STATIC,static,1342177296 |
159 | Control8=IDC_STATIC,static,1342177283 | 159 | Control8=IDC_STATIC,static,1342177283 |
160 | Control9=IDC_STATIC,static,1342177283 | 160 | Control9=IDC_STATIC,static,1342177283 |
161 | 161 | ||
162 | [DLG:IDD_CONFIRM_WRQ] | 162 | [DLG:IDD_CONFIRM_WRQ] |
163 | Type=1 | 163 | Type=1 |
164 | Class=CConfirmWRQDlg | 164 | Class=CConfirmWRQDlg |
165 | ControlCount=11 | 165 | ControlCount=11 |
166 | Control1=IDOK,button,1342242817 | 166 | Control1=IDOK,button,1342242817 |
167 | Control2=IDC_RENAME,button,1342242816 | 167 | Control2=IDC_RENAME,button,1342242816 |
168 | Control3=IDCANCEL,button,1342242816 | 168 | Control3=IDCANCEL,button,1342242816 |
169 | Control4=IDC_STATIC,static,1342308352 | 169 | Control4=IDC_STATIC,static,1342308352 |
170 | Control5=IDC_HOST,static,1350701313 | 170 | Control5=IDC_HOST,static,1350701313 |
171 | Control6=IDC_STATIC,static,1342308353 | 171 | Control6=IDC_STATIC,static,1342308353 |
172 | Control7=IDC_FILE,static,1350701313 | 172 | Control7=IDC_FILE,static,1350701313 |
173 | Control8=IDC_STATIC,static,1342177296 | 173 | Control8=IDC_STATIC,static,1342177296 |
174 | Control9=IDC_STATIC,static,1342177283 | 174 | Control9=IDC_STATIC,static,1342177283 |
175 | Control10=IDC_STATIC,static,1342177283 | 175 | Control10=IDC_STATIC,static,1342177283 |
176 | Control11=IDC_RESUME,button,1342242816 | 176 | Control11=IDC_RESUME,button,1342242816 |
177 | 177 | ||
178 | [CLS:CConfirmRRQDlg] | 178 | [CLS:CConfirmRRQDlg] |
179 | Type=0 | 179 | Type=0 |
180 | HeaderFile=ConfirmRRQDlg.h | 180 | HeaderFile=ConfirmRRQDlg.h |
181 | ImplementationFile=ConfirmRRQDlg.cpp | 181 | ImplementationFile=ConfirmRRQDlg.cpp |
182 | BaseClass=CDialog | 182 | BaseClass=CDialog |
183 | Filter=D | 183 | Filter=D |
184 | VirtualFilter=dWC | 184 | VirtualFilter=dWC |
185 | LastObject=CConfirmRRQDlg | 185 | LastObject=CConfirmRRQDlg |
diff --git a/pumpkin.mak b/pumpkin.mak index 7d2ec22..a22a6fa 100644 --- a/pumpkin.mak +++ b/pumpkin.mak | |||
@@ -1,89 +1,89 @@ | |||
1 | # Microsoft Developer Studio Generated NMAKE File, Format Version 4.20 | 1 | # Microsoft Developer Studio Generated NMAKE File, Format Version 4.20 |
2 | # ** DO NOT EDIT ** | 2 | # ** DO NOT EDIT ** |
3 | 3 | ||
4 | # TARGTYPE "Win32 (x86) Application" 0x0101 | 4 | # TARGTYPE "Win32 (x86) Application" 0x0101 |
5 | 5 | ||
6 | !IF "$(CFG)" == "" | 6 | !IF "$(CFG)" == "" |
7 | CFG=Install - Win32 Debug | 7 | CFG=Install - Win32 Debug |
8 | !MESSAGE No configuration specified. Defaulting to Install - Win32 Debug. | 8 | !MESSAGE No configuration specified. Defaulting to Install - Win32 Debug. |
9 | !ENDIF | 9 | !ENDIF |
10 | 10 | ||
11 | !IF "$(CFG)" != "PumpKIN - Win32 Release" && "$(CFG)" !=\ | 11 | !IF "$(CFG)" != "PumpKIN - Win32 Release" && "$(CFG)" !=\ |
12 | "PumpKIN - Win32 Debug" && "$(CFG)" != "PumpKIN - Win32 Static" && "$(CFG)" !=\ | 12 | "PumpKIN - Win32 Debug" && "$(CFG)" != "PumpKIN - Win32 Static" && "$(CFG)" !=\ |
13 | "Install - Win32 Debug" && "$(CFG)" != "Install - Win32 Pure" && "$(CFG)" !=\ | 13 | "Install - Win32 Debug" && "$(CFG)" != "Install - Win32 Pure" && "$(CFG)" !=\ |
14 | "Install - Win32 Static" && "$(CFG)" != "Install - Win32 Canned" | 14 | "Install - Win32 Static" && "$(CFG)" != "Install - Win32 Canned" |
15 | !MESSAGE Invalid configuration "$(CFG)" specified. | 15 | !MESSAGE Invalid configuration "$(CFG)" specified. |
16 | !MESSAGE You can specify a configuration when running NMAKE on this makefile | 16 | !MESSAGE You can specify a configuration when running NMAKE on this makefile |
17 | !MESSAGE by defining the macro CFG on the command line. For example: | 17 | !MESSAGE by defining the macro CFG on the command line. For example: |
18 | !MESSAGE | 18 | !MESSAGE |
19 | !MESSAGE NMAKE /f "pumpkin.mak" CFG="Install - Win32 Debug" | 19 | !MESSAGE NMAKE /f "pumpkin.mak" CFG="Install - Win32 Debug" |
20 | !MESSAGE | 20 | !MESSAGE |
21 | !MESSAGE Possible choices for configuration are: | 21 | !MESSAGE Possible choices for configuration are: |
22 | !MESSAGE | 22 | !MESSAGE |
23 | !MESSAGE "PumpKIN - Win32 Release" (based on "Win32 (x86) Application") | 23 | !MESSAGE "PumpKIN - Win32 Release" (based on "Win32 (x86) Application") |
24 | !MESSAGE "PumpKIN - Win32 Debug" (based on "Win32 (x86) Application") | 24 | !MESSAGE "PumpKIN - Win32 Debug" (based on "Win32 (x86) Application") |
25 | !MESSAGE "PumpKIN - Win32 Static" (based on "Win32 (x86) Application") | 25 | !MESSAGE "PumpKIN - Win32 Static" (based on "Win32 (x86) Application") |
26 | !MESSAGE "Install - Win32 Debug" (based on "Win32 (x86) Application") | 26 | !MESSAGE "Install - Win32 Debug" (based on "Win32 (x86) Application") |
27 | !MESSAGE "Install - Win32 Pure" (based on "Win32 (x86) Application") | 27 | !MESSAGE "Install - Win32 Pure" (based on "Win32 (x86) Application") |
28 | !MESSAGE "Install - Win32 Static" (based on "Win32 (x86) Application") | 28 | !MESSAGE "Install - Win32 Static" (based on "Win32 (x86) Application") |
29 | !MESSAGE "Install - Win32 Canned" (based on "Win32 (x86) Application") | 29 | !MESSAGE "Install - Win32 Canned" (based on "Win32 (x86) Application") |
30 | !MESSAGE | 30 | !MESSAGE |
31 | !ERROR An invalid configuration is specified. | 31 | !ERROR An invalid configuration is specified. |
32 | !ENDIF | 32 | !ENDIF |
33 | 33 | ||
34 | !IF "$(OS)" == "Windows_NT" | 34 | !IF "$(OS)" == "Windows_NT" |
35 | NULL= | 35 | NULL= |
36 | !ELSE | 36 | !ELSE |
37 | NULL=nul | 37 | NULL=nul |
38 | !ENDIF | 38 | !ENDIF |
39 | ################################################################################ | 39 | ################################################################################ |
40 | # Begin Project | 40 | # Begin Project |
41 | # PROP Target_Last_Scanned "Install - Win32 Canned" | 41 | # PROP Target_Last_Scanned "PumpKIN - Win32 Debug" |
42 | CPP=cl.exe | 42 | CPP=cl.exe |
43 | RSC=rc.exe | 43 | RSC=rc.exe |
44 | MTL=mktyplib.exe | 44 | MTL=mktyplib.exe |
45 | 45 | ||
46 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 46 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
47 | 47 | ||
48 | # PROP BASE Use_MFC 6 | 48 | # PROP BASE Use_MFC 6 |
49 | # PROP BASE Use_Debug_Libraries 0 | 49 | # PROP BASE Use_Debug_Libraries 0 |
50 | # PROP BASE Output_Dir "Release" | 50 | # PROP BASE Output_Dir "Release" |
51 | # PROP BASE Intermediate_Dir "Release" | 51 | # PROP BASE Intermediate_Dir "Release" |
52 | # PROP BASE Target_Dir "" | 52 | # PROP BASE Target_Dir "" |
53 | # PROP Use_MFC 6 | 53 | # PROP Use_MFC 6 |
54 | # PROP Use_Debug_Libraries 0 | 54 | # PROP Use_Debug_Libraries 0 |
55 | # PROP Output_Dir "Release" | 55 | # PROP Output_Dir "Release" |
56 | # PROP Intermediate_Dir "Release" | 56 | # PROP Intermediate_Dir "Release" |
57 | # PROP Target_Dir "" | 57 | # PROP Target_Dir "" |
58 | OUTDIR=.\Release | 58 | OUTDIR=.\Release |
59 | INTDIR=.\Release | 59 | INTDIR=.\Release |
60 | # Begin Custom Macros | 60 | # Begin Custom Macros |
61 | OutDir=.\Release | 61 | OutDir=.\Release |
62 | TargetName=pumpkin | 62 | TargetName=pumpkin |
63 | # End Custom Macros | 63 | # End Custom Macros |
64 | 64 | ||
65 | ALL : "$(OUTDIR)\pumpkin.exe" "$(OUTDIR)\pumpkin.ex_" "$(OUTDIR)\pumpkin.hlp"\ | 65 | ALL : "$(OUTDIR)\pumpkin.exe" "$(OUTDIR)\pumpkin.ex_" "$(OUTDIR)\pumpkin.hlp"\ |
66 | "$(OUTDIR)\pumpkin.cnt" "$(OUTDIR)\pumpkin.hl_" "$(OUTDIR)\pumpkin.cn_" | 66 | "$(OUTDIR)\pumpkin.cnt" "$(OUTDIR)\pumpkin.hl_" "$(OUTDIR)\pumpkin.cn_" |
67 | 67 | ||
68 | CLEAN : | 68 | CLEAN : |
69 | -@erase "$(INTDIR)\ACLTargetCombo.obj" | 69 | -@erase "$(INTDIR)\ACLTargetCombo.obj" |
70 | -@erase "$(INTDIR)\ConfirmRRQDlg.obj" | 70 | -@erase "$(INTDIR)\ConfirmRRQDlg.obj" |
71 | -@erase "$(INTDIR)\ConfirmWRQDlg.obj" | 71 | -@erase "$(INTDIR)\ConfirmWRQDlg.obj" |
72 | -@erase "$(INTDIR)\PropsACL.obj" | 72 | -@erase "$(INTDIR)\PropsACL.obj" |
73 | -@erase "$(INTDIR)\PropsNetwork.obj" | 73 | -@erase "$(INTDIR)\PropsNetwork.obj" |
74 | -@erase "$(INTDIR)\PropsServer.obj" | 74 | -@erase "$(INTDIR)\PropsServer.obj" |
75 | -@erase "$(INTDIR)\PropsSounds.obj" | 75 | -@erase "$(INTDIR)\PropsSounds.obj" |
76 | -@erase "$(INTDIR)\pumpkin.cn_" | 76 | -@erase "$(INTDIR)\pumpkin.cn_" |
77 | -@erase "$(INTDIR)\pumpkin.cnt" | 77 | -@erase "$(INTDIR)\pumpkin.cnt" |
78 | -@erase "$(INTDIR)\pumpkin.hl_" | 78 | -@erase "$(INTDIR)\pumpkin.hl_" |
79 | -@erase "$(INTDIR)\pumpkin.hlp" | 79 | -@erase "$(INTDIR)\pumpkin.hlp" |
80 | -@erase "$(INTDIR)\PumpKIN.obj" | 80 | -@erase "$(INTDIR)\PumpKIN.obj" |
81 | -@erase "$(INTDIR)\pumpkin.pch" | 81 | -@erase "$(INTDIR)\pumpkin.pch" |
82 | -@erase "$(INTDIR)\pumpkin.res" | 82 | -@erase "$(INTDIR)\pumpkin.res" |
83 | -@erase "$(INTDIR)\PumpKINDlg.obj" | 83 | -@erase "$(INTDIR)\PumpKINDlg.obj" |
84 | -@erase "$(INTDIR)\RequestDlg.obj" | 84 | -@erase "$(INTDIR)\RequestDlg.obj" |
85 | -@erase "$(INTDIR)\Resolver.obj" | 85 | -@erase "$(INTDIR)\Resolver.obj" |
86 | -@erase "$(INTDIR)\Retrier.obj" | 86 | -@erase "$(INTDIR)\Retrier.obj" |
87 | -@erase "$(INTDIR)\StdAfx.obj" | 87 | -@erase "$(INTDIR)\StdAfx.obj" |
88 | -@erase "$(INTDIR)\Trayer.obj" | 88 | -@erase "$(INTDIR)\Trayer.obj" |
89 | -@erase "$(OUTDIR)\pumpkin.ex_" | 89 | -@erase "$(OUTDIR)\pumpkin.ex_" |
@@ -661,202 +661,167 @@ LINK32_OBJS= \ | |||
661 | .c{$(CPP_SBRS)}.sbr: | 661 | .c{$(CPP_SBRS)}.sbr: |
662 | $(CPP) $(CPP_PROJ) $< | 662 | $(CPP) $(CPP_PROJ) $< |
663 | 663 | ||
664 | .cpp{$(CPP_SBRS)}.sbr: | 664 | .cpp{$(CPP_SBRS)}.sbr: |
665 | $(CPP) $(CPP_PROJ) $< | 665 | $(CPP) $(CPP_PROJ) $< |
666 | 666 | ||
667 | .cxx{$(CPP_SBRS)}.sbr: | 667 | .cxx{$(CPP_SBRS)}.sbr: |
668 | $(CPP) $(CPP_PROJ) $< | 668 | $(CPP) $(CPP_PROJ) $< |
669 | 669 | ||
670 | ################################################################################ | 670 | ################################################################################ |
671 | # Begin Target | 671 | # Begin Target |
672 | 672 | ||
673 | # Name "PumpKIN - Win32 Release" | 673 | # Name "PumpKIN - Win32 Release" |
674 | # Name "PumpKIN - Win32 Debug" | 674 | # Name "PumpKIN - Win32 Debug" |
675 | # Name "PumpKIN - Win32 Static" | 675 | # Name "PumpKIN - Win32 Static" |
676 | 676 | ||
677 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 677 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
678 | 678 | ||
679 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 679 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
680 | 680 | ||
681 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 681 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
682 | 682 | ||
683 | !ENDIF | 683 | !ENDIF |
684 | 684 | ||
685 | ################################################################################ | 685 | ################################################################################ |
686 | # Begin Source File | 686 | # Begin Source File |
687 | 687 | ||
688 | SOURCE=.\PumpKIN.cpp | 688 | SOURCE=.\PumpKIN.cpp |
689 | 689 | ||
690 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 690 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
691 | 691 | ||
692 | DEP_CPP_PUMPK=\ | 692 | DEP_CPP_PUMPK=\ |
693 | ".\pumpkin.h"\ | 693 | ".\pumpkin.h"\ |
694 | ".\PumpKINDlg.h"\ | 694 | ".\PumpKINDlg.h"\ |
695 | ".\shared-code\BellsNWhistles.h"\ | 695 | ".\shared-code\BellsNWhistles.h"\ |
696 | ".\shared-code\kHelpers.h"\ | 696 | ".\shared-code\kHelpers.h"\ |
697 | ".\stdafx.h"\ | 697 | ".\stdafx.h"\ |
698 | 698 | ||
699 | 699 | ||
700 | "$(INTDIR)\PumpKIN.obj" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ | 700 | "$(INTDIR)\PumpKIN.obj" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ |
701 | "$(INTDIR)\pumpkin.pch" | 701 | "$(INTDIR)\pumpkin.pch" |
702 | 702 | ||
703 | 703 | ||
704 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 704 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
705 | 705 | ||
706 | DEP_CPP_PUMPK=\ | 706 | DEP_CPP_PUMPK=\ |
707 | ".\pumpkin.h"\ | 707 | ".\pumpkin.h"\ |
708 | ".\PumpKINDlg.h"\ | 708 | ".\PumpKINDlg.h"\ |
709 | ".\shared-code\BellsNWhistles.h"\ | ||
709 | ".\shared-code\kHelpers.h"\ | 710 | ".\shared-code\kHelpers.h"\ |
710 | ".\stdafx.h"\ | 711 | ".\stdafx.h"\ |
711 | 712 | ||
712 | 713 | ||
713 | "$(INTDIR)\PumpKIN.obj" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ | 714 | "$(INTDIR)\PumpKIN.obj" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ |
714 | "$(INTDIR)\pumpkin.pch" | 715 | "$(INTDIR)\pumpkin.pch" |
715 | 716 | ||
716 | "$(INTDIR)\PumpKIN.sbr" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ | 717 | "$(INTDIR)\PumpKIN.sbr" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ |
717 | "$(INTDIR)\pumpkin.pch" | 718 | "$(INTDIR)\pumpkin.pch" |
718 | 719 | ||
719 | 720 | ||
720 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 721 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
721 | 722 | ||
722 | DEP_CPP_PUMPK=\ | 723 | DEP_CPP_PUMPK=\ |
723 | ".\pumpkin.h"\ | 724 | ".\pumpkin.h"\ |
724 | ".\PumpKINDlg.h"\ | 725 | ".\PumpKINDlg.h"\ |
725 | ".\shared-code\BellsNWhistles.h"\ | 726 | ".\shared-code\BellsNWhistles.h"\ |
726 | ".\shared-code\kHelpers.h"\ | 727 | ".\shared-code\kHelpers.h"\ |
727 | ".\stdafx.h"\ | 728 | ".\stdafx.h"\ |
728 | 729 | ||
729 | 730 | ||
730 | "$(INTDIR)\PumpKIN.obj" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ | 731 | "$(INTDIR)\PumpKIN.obj" : $(SOURCE) $(DEP_CPP_PUMPK) "$(INTDIR)"\ |
731 | "$(INTDIR)\pumpkin.pch" | 732 | "$(INTDIR)\pumpkin.pch" |
732 | 733 | ||
733 | 734 | ||
734 | !ENDIF | 735 | !ENDIF |
735 | 736 | ||
736 | # End Source File | 737 | # End Source File |
737 | ################################################################################ | 738 | ################################################################################ |
738 | # Begin Source File | 739 | # Begin Source File |
739 | 740 | ||
740 | SOURCE=.\PumpKINDlg.cpp | 741 | SOURCE=.\PumpKINDlg.cpp |
741 | |||
742 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | ||
743 | |||
744 | DEP_CPP_PUMPKI=\ | 742 | DEP_CPP_PUMPKI=\ |
745 | ".\ACLTargetCombo.h"\ | 743 | ".\ACLTargetCombo.h"\ |
746 | ".\ConfirmRRQDlg.h"\ | 744 | ".\ConfirmRRQDlg.h"\ |
747 | ".\ConfirmWRQDlg.h"\ | 745 | ".\ConfirmWRQDlg.h"\ |
748 | ".\PropsACL.h"\ | 746 | ".\PropsACL.h"\ |
749 | ".\PropsNetwork.h"\ | 747 | ".\PropsNetwork.h"\ |
750 | ".\PropsServer.h"\ | 748 | ".\PropsServer.h"\ |
751 | ".\PropsSounds.h"\ | 749 | ".\PropsSounds.h"\ |
752 | ".\pumpkin.h"\ | 750 | ".\pumpkin.h"\ |
753 | ".\PumpKINDlg.h"\ | 751 | ".\PumpKINDlg.h"\ |
754 | ".\RequestDlg.h"\ | 752 | ".\RequestDlg.h"\ |
755 | ".\Resolver.h"\ | 753 | ".\Resolver.h"\ |
756 | ".\Retrier.h"\ | 754 | ".\Retrier.h"\ |
757 | ".\shared-code\BellsNWhistles.h"\ | 755 | ".\shared-code\BellsNWhistles.h"\ |
758 | ".\shared-code\kHelpers.h"\ | 756 | ".\shared-code\kHelpers.h"\ |
759 | ".\stdafx.h"\ | 757 | ".\stdafx.h"\ |
760 | ".\Trayer.h"\ | 758 | ".\Trayer.h"\ |
761 | 759 | ||
762 | 760 | ||
761 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | ||
762 | |||
763 | |||
763 | "$(INTDIR)\PumpKINDlg.obj" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ | 764 | "$(INTDIR)\PumpKINDlg.obj" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ |
764 | "$(INTDIR)\pumpkin.pch" | 765 | "$(INTDIR)\pumpkin.pch" |
765 | 766 | ||
766 | 767 | ||
767 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 768 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
768 | 769 | ||
769 | DEP_CPP_PUMPKI=\ | ||
770 | ".\ACLTargetCombo.h"\ | ||
771 | ".\ConfirmRRQDlg.h"\ | ||
772 | ".\ConfirmWRQDlg.h"\ | ||
773 | ".\PropsACL.h"\ | ||
774 | ".\PropsNetwork.h"\ | ||
775 | ".\PropsServer.h"\ | ||
776 | ".\PropsSounds.h"\ | ||
777 | ".\pumpkin.h"\ | ||
778 | ".\PumpKINDlg.h"\ | ||
779 | ".\RequestDlg.h"\ | ||
780 | ".\Resolver.h"\ | ||
781 | ".\Retrier.h"\ | ||
782 | ".\shared-code\BellsNWhistles.h"\ | ||
783 | ".\shared-code\kHelpers.h"\ | ||
784 | ".\stdafx.h"\ | ||
785 | ".\Trayer.h"\ | ||
786 | |||
787 | 770 | ||
788 | "$(INTDIR)\PumpKINDlg.obj" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ | 771 | "$(INTDIR)\PumpKINDlg.obj" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ |
789 | "$(INTDIR)\pumpkin.pch" | 772 | "$(INTDIR)\pumpkin.pch" |
790 | 773 | ||
791 | "$(INTDIR)\PumpKINDlg.sbr" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ | 774 | "$(INTDIR)\PumpKINDlg.sbr" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ |
792 | "$(INTDIR)\pumpkin.pch" | 775 | "$(INTDIR)\pumpkin.pch" |
793 | 776 | ||
794 | 777 | ||
795 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 778 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
796 | 779 | ||
797 | DEP_CPP_PUMPKI=\ | ||
798 | ".\ACLTargetCombo.h"\ | ||
799 | ".\ConfirmRRQDlg.h"\ | ||
800 | ".\ConfirmWRQDlg.h"\ | ||
801 | ".\PropsACL.h"\ | ||
802 | ".\PropsNetwork.h"\ | ||
803 | ".\PropsServer.h"\ | ||
804 | ".\PropsSounds.h"\ | ||
805 | ".\pumpkin.h"\ | ||
806 | ".\PumpKINDlg.h"\ | ||
807 | ".\RequestDlg.h"\ | ||
808 | ".\Resolver.h"\ | ||
809 | ".\Retrier.h"\ | ||
810 | ".\shared-code\BellsNWhistles.h"\ | ||
811 | ".\shared-code\kHelpers.h"\ | ||
812 | ".\stdafx.h"\ | ||
813 | ".\Trayer.h"\ | ||
814 | |||
815 | 780 | ||
816 | "$(INTDIR)\PumpKINDlg.obj" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ | 781 | "$(INTDIR)\PumpKINDlg.obj" : $(SOURCE) $(DEP_CPP_PUMPKI) "$(INTDIR)"\ |
817 | "$(INTDIR)\pumpkin.pch" | 782 | "$(INTDIR)\pumpkin.pch" |
818 | 783 | ||
819 | 784 | ||
820 | !ENDIF | 785 | !ENDIF |
821 | 786 | ||
822 | # End Source File | 787 | # End Source File |
823 | ################################################################################ | 788 | ################################################################################ |
824 | # Begin Source File | 789 | # Begin Source File |
825 | 790 | ||
826 | SOURCE=.\StdAfx.cpp | 791 | SOURCE=.\StdAfx.cpp |
827 | DEP_CPP_STDAF=\ | 792 | DEP_CPP_STDAF=\ |
828 | ".\shared-code\BellsNWhistles.h"\ | 793 | ".\shared-code\BellsNWhistles.h"\ |
829 | ".\shared-code\kHelpers.h"\ | 794 | ".\shared-code\kHelpers.h"\ |
830 | ".\stdafx.h"\ | 795 | ".\stdafx.h"\ |
831 | 796 | ||
832 | 797 | ||
833 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 798 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
834 | 799 | ||
835 | # ADD CPP /Yc"stdafx.h" | 800 | # ADD CPP /Yc"stdafx.h" |
836 | 801 | ||
837 | BuildCmds= \ | 802 | BuildCmds= \ |
838 | $(CPP) /nologo /Zp1 /MD /W3 /GX /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D\ | 803 | $(CPP) /nologo /Zp1 /MD /W3 /GX /O1 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D\ |
839 | "_AFXDLL" /D "_MBCS" /Fp"$(INTDIR)/pumpkin.pch" /Yc"stdafx.h" /Fo"$(INTDIR)/"\ | 804 | "_AFXDLL" /D "_MBCS" /Fp"$(INTDIR)/pumpkin.pch" /Yc"stdafx.h" /Fo"$(INTDIR)/"\ |
840 | /c $(SOURCE) \ | 805 | /c $(SOURCE) \ |
841 | 806 | ||
842 | 807 | ||
843 | "$(INTDIR)\StdAfx.obj" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" | 808 | "$(INTDIR)\StdAfx.obj" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" |
844 | $(BuildCmds) | 809 | $(BuildCmds) |
845 | 810 | ||
846 | "$(INTDIR)\pumpkin.pch" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" | 811 | "$(INTDIR)\pumpkin.pch" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" |
847 | $(BuildCmds) | 812 | $(BuildCmds) |
848 | 813 | ||
849 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 814 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
850 | 815 | ||
851 | # ADD CPP /Yc"stdafx.h" | 816 | # ADD CPP /Yc"stdafx.h" |
852 | 817 | ||
853 | BuildCmds= \ | 818 | BuildCmds= \ |
854 | $(CPP) /nologo /Zp1 /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D\ | 819 | $(CPP) /nologo /Zp1 /MDd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D\ |
855 | "_WINDOWS" /D "_AFXDLL" /D "_MBCS" /FR"$(INTDIR)/" /Fp"$(INTDIR)/pumpkin.pch"\ | 820 | "_WINDOWS" /D "_AFXDLL" /D "_MBCS" /FR"$(INTDIR)/" /Fp"$(INTDIR)/pumpkin.pch"\ |
856 | /Yc"stdafx.h" /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c $(SOURCE) \ | 821 | /Yc"stdafx.h" /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c $(SOURCE) \ |
857 | 822 | ||
858 | 823 | ||
859 | "$(INTDIR)\StdAfx.obj" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" | 824 | "$(INTDIR)\StdAfx.obj" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" |
860 | $(BuildCmds) | 825 | $(BuildCmds) |
861 | 826 | ||
862 | "$(INTDIR)\StdAfx.sbr" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" | 827 | "$(INTDIR)\StdAfx.sbr" : $(SOURCE) $(DEP_CPP_STDAF) "$(INTDIR)" |
@@ -996,636 +961,627 @@ TargetName=pumpkin | |||
996 | InputPath=.\help\pumpkin.hpj | 961 | InputPath=.\help\pumpkin.hpj |
997 | 962 | ||
998 | BuildCmds= \ | 963 | BuildCmds= \ |
999 | "$(ProjDir)\makehelp.bat" \ | 964 | "$(ProjDir)\makehelp.bat" \ |
1000 | compress $(OutDir)\$(TargetName).hlp $(OutDir)\$(TargetName).hl_ \ | 965 | compress $(OutDir)\$(TargetName).hlp $(OutDir)\$(TargetName).hl_ \ |
1001 | compress $(OutDir)\$(TargetName).cnt $(OutDir)\$(TargetName).cn_ \ | 966 | compress $(OutDir)\$(TargetName).cnt $(OutDir)\$(TargetName).cn_ \ |
1002 | 967 | ||
1003 | 968 | ||
1004 | "$(OutDir)\$(TargetName).hlp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | 969 | "$(OutDir)\$(TargetName).hlp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" |
1005 | $(BuildCmds) | 970 | $(BuildCmds) |
1006 | 971 | ||
1007 | "$(OutDir)\$(TargetName).cnt" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | 972 | "$(OutDir)\$(TargetName).cnt" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" |
1008 | $(BuildCmds) | 973 | $(BuildCmds) |
1009 | 974 | ||
1010 | "$(OutDir)\$(TargetName).hl_" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | 975 | "$(OutDir)\$(TargetName).hl_" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" |
1011 | $(BuildCmds) | 976 | $(BuildCmds) |
1012 | 977 | ||
1013 | "$(OutDir)\$(TargetName).cn_" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" | 978 | "$(OutDir)\$(TargetName).cn_" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)" |
1014 | $(BuildCmds) | 979 | $(BuildCmds) |
1015 | # End Custom Build | 980 | # End Custom Build |
1016 | 981 | ||
1017 | !ENDIF | 982 | !ENDIF |
1018 | 983 | ||
1019 | # End Source File | 984 | # End Source File |
1020 | ################################################################################ | 985 | ################################################################################ |
1021 | # Begin Source File | 986 | # Begin Source File |
1022 | 987 | ||
1023 | SOURCE=.\PropsServer.cpp | 988 | SOURCE=.\PropsServer.cpp |
1024 | 989 | ||
1025 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 990 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1026 | 991 | ||
1027 | DEP_CPP_PROPS=\ | 992 | DEP_CPP_PROPS=\ |
1028 | ".\PropsServer.h"\ | 993 | ".\PropsServer.h"\ |
1029 | ".\pumpkin.h"\ | 994 | ".\pumpkin.h"\ |
1030 | ".\shared-code\BellsNWhistles.h"\ | 995 | ".\shared-code\BellsNWhistles.h"\ |
1031 | ".\shared-code\kHelpers.h"\ | 996 | ".\shared-code\kHelpers.h"\ |
1032 | ".\stdafx.h"\ | 997 | ".\stdafx.h"\ |
1033 | 998 | ||
1034 | 999 | ||
1035 | "$(INTDIR)\PropsServer.obj" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ | 1000 | "$(INTDIR)\PropsServer.obj" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ |
1036 | "$(INTDIR)\pumpkin.pch" | 1001 | "$(INTDIR)\pumpkin.pch" |
1037 | 1002 | ||
1038 | 1003 | ||
1039 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1004 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1040 | 1005 | ||
1041 | DEP_CPP_PROPS=\ | 1006 | DEP_CPP_PROPS=\ |
1042 | ".\PropsServer.h"\ | 1007 | ".\PropsServer.h"\ |
1043 | ".\pumpkin.h"\ | 1008 | ".\pumpkin.h"\ |
1009 | ".\shared-code\BellsNWhistles.h"\ | ||
1044 | ".\shared-code\kHelpers.h"\ | 1010 | ".\shared-code\kHelpers.h"\ |
1045 | ".\stdafx.h"\ | 1011 | ".\stdafx.h"\ |
1046 | 1012 | ||
1047 | 1013 | ||
1048 | "$(INTDIR)\PropsServer.obj" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ | 1014 | "$(INTDIR)\PropsServer.obj" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ |
1049 | "$(INTDIR)\pumpkin.pch" | 1015 | "$(INTDIR)\pumpkin.pch" |
1050 | 1016 | ||
1051 | "$(INTDIR)\PropsServer.sbr" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ | 1017 | "$(INTDIR)\PropsServer.sbr" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ |
1052 | "$(INTDIR)\pumpkin.pch" | 1018 | "$(INTDIR)\pumpkin.pch" |
1053 | 1019 | ||
1054 | 1020 | ||
1055 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1021 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1056 | 1022 | ||
1057 | DEP_CPP_PROPS=\ | 1023 | DEP_CPP_PROPS=\ |
1058 | ".\PropsServer.h"\ | 1024 | ".\PropsServer.h"\ |
1059 | ".\pumpkin.h"\ | 1025 | ".\pumpkin.h"\ |
1060 | ".\shared-code\BellsNWhistles.h"\ | 1026 | ".\shared-code\BellsNWhistles.h"\ |
1061 | ".\shared-code\kHelpers.h"\ | 1027 | ".\shared-code\kHelpers.h"\ |
1062 | ".\stdafx.h"\ | 1028 | ".\stdafx.h"\ |
1063 | 1029 | ||
1064 | 1030 | ||
1065 | "$(INTDIR)\PropsServer.obj" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ | 1031 | "$(INTDIR)\PropsServer.obj" : $(SOURCE) $(DEP_CPP_PROPS) "$(INTDIR)"\ |
1066 | "$(INTDIR)\pumpkin.pch" | 1032 | "$(INTDIR)\pumpkin.pch" |
1067 | 1033 | ||
1068 | 1034 | ||
1069 | !ENDIF | 1035 | !ENDIF |
1070 | 1036 | ||
1071 | # End Source File | 1037 | # End Source File |
1072 | ################################################################################ | 1038 | ################################################################################ |
1073 | # Begin Source File | 1039 | # Begin Source File |
1074 | 1040 | ||
1075 | SOURCE=.\PropsNetwork.cpp | 1041 | SOURCE=.\PropsNetwork.cpp |
1076 | DEP_CPP_PROPSN=\ | 1042 | DEP_CPP_PROPSN=\ |
1077 | ".\PropsNetwork.h"\ | 1043 | ".\PropsNetwork.h"\ |
1078 | ".\pumpkin.h"\ | 1044 | ".\pumpkin.h"\ |
1079 | ".\shared-code\BellsNWhistles.h"\ | 1045 | ".\shared-code\BellsNWhistles.h"\ |
1080 | ".\shared-code\kHelpers.h"\ | 1046 | ".\shared-code\kHelpers.h"\ |
1081 | ".\stdafx.h"\ | 1047 | ".\stdafx.h"\ |
1082 | 1048 | ||
1083 | 1049 | ||
1084 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1050 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1085 | 1051 | ||
1086 | 1052 | ||
1087 | "$(INTDIR)\PropsNetwork.obj" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ | 1053 | "$(INTDIR)\PropsNetwork.obj" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ |
1088 | "$(INTDIR)\pumpkin.pch" | 1054 | "$(INTDIR)\pumpkin.pch" |
1089 | 1055 | ||
1090 | 1056 | ||
1091 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1057 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1092 | 1058 | ||
1093 | 1059 | ||
1094 | "$(INTDIR)\PropsNetwork.obj" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ | 1060 | "$(INTDIR)\PropsNetwork.obj" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ |
1095 | "$(INTDIR)\pumpkin.pch" | 1061 | "$(INTDIR)\pumpkin.pch" |
1096 | 1062 | ||
1097 | "$(INTDIR)\PropsNetwork.sbr" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ | 1063 | "$(INTDIR)\PropsNetwork.sbr" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ |
1098 | "$(INTDIR)\pumpkin.pch" | 1064 | "$(INTDIR)\pumpkin.pch" |
1099 | 1065 | ||
1100 | 1066 | ||
1101 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1067 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1102 | 1068 | ||
1103 | 1069 | ||
1104 | "$(INTDIR)\PropsNetwork.obj" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ | 1070 | "$(INTDIR)\PropsNetwork.obj" : $(SOURCE) $(DEP_CPP_PROPSN) "$(INTDIR)"\ |
1105 | "$(INTDIR)\pumpkin.pch" | 1071 | "$(INTDIR)\pumpkin.pch" |
1106 | 1072 | ||
1107 | 1073 | ||
1108 | !ENDIF | 1074 | !ENDIF |
1109 | 1075 | ||
1110 | # End Source File | 1076 | # End Source File |
1111 | ################################################################################ | 1077 | ################################################################################ |
1112 | # Begin Source File | 1078 | # Begin Source File |
1113 | 1079 | ||
1114 | SOURCE=.\ConfirmRRQDlg.cpp | 1080 | SOURCE=.\ConfirmRRQDlg.cpp |
1115 | 1081 | ||
1116 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1082 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1117 | 1083 | ||
1118 | DEP_CPP_CONFI=\ | 1084 | DEP_CPP_CONFI=\ |
1119 | ".\ConfirmRRQDlg.h"\ | 1085 | ".\ConfirmRRQDlg.h"\ |
1120 | ".\pumpkin.h"\ | 1086 | ".\pumpkin.h"\ |
1121 | ".\PumpKINDlg.h"\ | 1087 | ".\PumpKINDlg.h"\ |
1122 | ".\shared-code\BellsNWhistles.h"\ | 1088 | ".\shared-code\BellsNWhistles.h"\ |
1123 | ".\shared-code\kHelpers.h"\ | 1089 | ".\shared-code\kHelpers.h"\ |
1124 | ".\stdafx.h"\ | 1090 | ".\stdafx.h"\ |
1125 | 1091 | ||
1126 | 1092 | ||
1127 | "$(INTDIR)\ConfirmRRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ | 1093 | "$(INTDIR)\ConfirmRRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ |
1128 | "$(INTDIR)\pumpkin.pch" | 1094 | "$(INTDIR)\pumpkin.pch" |
1129 | 1095 | ||
1130 | 1096 | ||
1131 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1097 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1132 | 1098 | ||
1133 | DEP_CPP_CONFI=\ | 1099 | DEP_CPP_CONFI=\ |
1134 | ".\ConfirmRRQDlg.h"\ | 1100 | ".\ConfirmRRQDlg.h"\ |
1135 | ".\pumpkin.h"\ | 1101 | ".\pumpkin.h"\ |
1136 | ".\PumpKINDlg.h"\ | 1102 | ".\PumpKINDlg.h"\ |
1103 | ".\shared-code\BellsNWhistles.h"\ | ||
1137 | ".\shared-code\kHelpers.h"\ | 1104 | ".\shared-code\kHelpers.h"\ |
1138 | ".\stdafx.h"\ | 1105 | ".\stdafx.h"\ |
1139 | 1106 | ||
1140 | 1107 | ||
1141 | "$(INTDIR)\ConfirmRRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ | 1108 | "$(INTDIR)\ConfirmRRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ |
1142 | "$(INTDIR)\pumpkin.pch" | 1109 | "$(INTDIR)\pumpkin.pch" |
1143 | 1110 | ||
1144 | "$(INTDIR)\ConfirmRRQDlg.sbr" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ | 1111 | "$(INTDIR)\ConfirmRRQDlg.sbr" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ |
1145 | "$(INTDIR)\pumpkin.pch" | 1112 | "$(INTDIR)\pumpkin.pch" |
1146 | 1113 | ||
1147 | 1114 | ||
1148 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1115 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1149 | 1116 | ||
1150 | DEP_CPP_CONFI=\ | 1117 | DEP_CPP_CONFI=\ |
1151 | ".\ConfirmRRQDlg.h"\ | 1118 | ".\ConfirmRRQDlg.h"\ |
1152 | ".\pumpkin.h"\ | 1119 | ".\pumpkin.h"\ |
1153 | ".\PumpKINDlg.h"\ | 1120 | ".\PumpKINDlg.h"\ |
1154 | ".\shared-code\BellsNWhistles.h"\ | 1121 | ".\shared-code\BellsNWhistles.h"\ |
1155 | ".\shared-code\kHelpers.h"\ | 1122 | ".\shared-code\kHelpers.h"\ |
1156 | ".\stdafx.h"\ | 1123 | ".\stdafx.h"\ |
1157 | 1124 | ||
1158 | 1125 | ||
1159 | "$(INTDIR)\ConfirmRRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ | 1126 | "$(INTDIR)\ConfirmRRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFI) "$(INTDIR)"\ |
1160 | "$(INTDIR)\pumpkin.pch" | 1127 | "$(INTDIR)\pumpkin.pch" |
1161 | 1128 | ||
1162 | 1129 | ||
1163 | !ENDIF | 1130 | !ENDIF |
1164 | 1131 | ||
1165 | # End Source File | 1132 | # End Source File |
1166 | ################################################################################ | 1133 | ################################################################################ |
1167 | # Begin Source File | 1134 | # Begin Source File |
1168 | 1135 | ||
1169 | SOURCE=.\ConfirmWRQDlg.cpp | 1136 | SOURCE=.\ConfirmWRQDlg.cpp |
1170 | 1137 | ||
1171 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1138 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1172 | 1139 | ||
1173 | DEP_CPP_CONFIR=\ | 1140 | DEP_CPP_CONFIR=\ |
1174 | ".\ConfirmWRQDlg.h"\ | 1141 | ".\ConfirmWRQDlg.h"\ |
1175 | ".\pumpkin.h"\ | 1142 | ".\pumpkin.h"\ |
1176 | ".\PumpKINDlg.h"\ | 1143 | ".\PumpKINDlg.h"\ |
1177 | ".\shared-code\BellsNWhistles.h"\ | 1144 | ".\shared-code\BellsNWhistles.h"\ |
1178 | ".\shared-code\kHelpers.h"\ | 1145 | ".\shared-code\kHelpers.h"\ |
1179 | ".\stdafx.h"\ | 1146 | ".\stdafx.h"\ |
1180 | 1147 | ||
1181 | 1148 | ||
1182 | "$(INTDIR)\ConfirmWRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ | 1149 | "$(INTDIR)\ConfirmWRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ |
1183 | "$(INTDIR)\pumpkin.pch" | 1150 | "$(INTDIR)\pumpkin.pch" |
1184 | 1151 | ||
1185 | 1152 | ||
1186 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1153 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1187 | 1154 | ||
1188 | DEP_CPP_CONFIR=\ | 1155 | DEP_CPP_CONFIR=\ |
1189 | ".\ConfirmWRQDlg.h"\ | 1156 | ".\ConfirmWRQDlg.h"\ |
1190 | ".\pumpkin.h"\ | 1157 | ".\pumpkin.h"\ |
1191 | ".\PumpKINDlg.h"\ | 1158 | ".\PumpKINDlg.h"\ |
1159 | ".\shared-code\BellsNWhistles.h"\ | ||
1192 | ".\shared-code\kHelpers.h"\ | 1160 | ".\shared-code\kHelpers.h"\ |
1193 | ".\stdafx.h"\ | 1161 | ".\stdafx.h"\ |
1194 | 1162 | ||
1195 | 1163 | ||
1196 | "$(INTDIR)\ConfirmWRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ | 1164 | "$(INTDIR)\ConfirmWRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ |
1197 | "$(INTDIR)\pumpkin.pch" | 1165 | "$(INTDIR)\pumpkin.pch" |
1198 | 1166 | ||
1199 | "$(INTDIR)\ConfirmWRQDlg.sbr" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ | 1167 | "$(INTDIR)\ConfirmWRQDlg.sbr" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ |
1200 | "$(INTDIR)\pumpkin.pch" | 1168 | "$(INTDIR)\pumpkin.pch" |
1201 | 1169 | ||
1202 | 1170 | ||
1203 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1171 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1204 | 1172 | ||
1205 | DEP_CPP_CONFIR=\ | 1173 | DEP_CPP_CONFIR=\ |
1206 | ".\ConfirmWRQDlg.h"\ | 1174 | ".\ConfirmWRQDlg.h"\ |
1207 | ".\pumpkin.h"\ | 1175 | ".\pumpkin.h"\ |
1208 | ".\PumpKINDlg.h"\ | 1176 | ".\PumpKINDlg.h"\ |
1209 | ".\shared-code\BellsNWhistles.h"\ | 1177 | ".\shared-code\BellsNWhistles.h"\ |
1210 | ".\shared-code\kHelpers.h"\ | 1178 | ".\shared-code\kHelpers.h"\ |
1211 | ".\stdafx.h"\ | 1179 | ".\stdafx.h"\ |
1212 | 1180 | ||
1213 | 1181 | ||
1214 | "$(INTDIR)\ConfirmWRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ | 1182 | "$(INTDIR)\ConfirmWRQDlg.obj" : $(SOURCE) $(DEP_CPP_CONFIR) "$(INTDIR)"\ |
1215 | "$(INTDIR)\pumpkin.pch" | 1183 | "$(INTDIR)\pumpkin.pch" |
1216 | 1184 | ||
1217 | 1185 | ||
1218 | !ENDIF | 1186 | !ENDIF |
1219 | 1187 | ||
1220 | # End Source File | 1188 | # End Source File |
1221 | ################################################################################ | 1189 | ################################################################################ |
1222 | # Begin Source File | 1190 | # Begin Source File |
1223 | 1191 | ||
1224 | SOURCE=.\RequestDlg.cpp | 1192 | SOURCE=.\RequestDlg.cpp |
1225 | DEP_CPP_REQUE=\ | 1193 | DEP_CPP_REQUE=\ |
1226 | ".\pumpkin.h"\ | 1194 | ".\pumpkin.h"\ |
1227 | ".\RequestDlg.h"\ | 1195 | ".\RequestDlg.h"\ |
1228 | ".\shared-code\BellsNWhistles.h"\ | 1196 | ".\shared-code\BellsNWhistles.h"\ |
1229 | ".\shared-code\kHelpers.h"\ | 1197 | ".\shared-code\kHelpers.h"\ |
1230 | ".\stdafx.h"\ | 1198 | ".\stdafx.h"\ |
1231 | 1199 | ||
1232 | 1200 | ||
1233 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1201 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1234 | 1202 | ||
1235 | 1203 | ||
1236 | "$(INTDIR)\RequestDlg.obj" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ | 1204 | "$(INTDIR)\RequestDlg.obj" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ |
1237 | "$(INTDIR)\pumpkin.pch" | 1205 | "$(INTDIR)\pumpkin.pch" |
1238 | 1206 | ||
1239 | 1207 | ||
1240 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1208 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1241 | 1209 | ||
1242 | 1210 | ||
1243 | "$(INTDIR)\RequestDlg.obj" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ | 1211 | "$(INTDIR)\RequestDlg.obj" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ |
1244 | "$(INTDIR)\pumpkin.pch" | 1212 | "$(INTDIR)\pumpkin.pch" |
1245 | 1213 | ||
1246 | "$(INTDIR)\RequestDlg.sbr" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ | 1214 | "$(INTDIR)\RequestDlg.sbr" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ |
1247 | "$(INTDIR)\pumpkin.pch" | 1215 | "$(INTDIR)\pumpkin.pch" |
1248 | 1216 | ||
1249 | 1217 | ||
1250 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1218 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1251 | 1219 | ||
1252 | 1220 | ||
1253 | "$(INTDIR)\RequestDlg.obj" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ | 1221 | "$(INTDIR)\RequestDlg.obj" : $(SOURCE) $(DEP_CPP_REQUE) "$(INTDIR)"\ |
1254 | "$(INTDIR)\pumpkin.pch" | 1222 | "$(INTDIR)\pumpkin.pch" |
1255 | 1223 | ||
1256 | 1224 | ||
1257 | !ENDIF | 1225 | !ENDIF |
1258 | 1226 | ||
1259 | # End Source File | 1227 | # End Source File |
1260 | ################################################################################ | 1228 | ################################################################################ |
1261 | # Begin Source File | 1229 | # Begin Source File |
1262 | 1230 | ||
1263 | SOURCE=.\Resolver.cpp | 1231 | SOURCE=.\Resolver.cpp |
1264 | 1232 | ||
1265 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1233 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1266 | 1234 | ||
1267 | DEP_CPP_RESOL=\ | 1235 | DEP_CPP_RESOL=\ |
1268 | ".\pumpkin.h"\ | 1236 | ".\pumpkin.h"\ |
1269 | ".\PumpKINDlg.h"\ | 1237 | ".\PumpKINDlg.h"\ |
1270 | ".\Resolver.h"\ | 1238 | ".\Resolver.h"\ |
1271 | ".\shared-code\BellsNWhistles.h"\ | 1239 | ".\shared-code\BellsNWhistles.h"\ |
1272 | ".\shared-code\kHelpers.h"\ | 1240 | ".\shared-code\kHelpers.h"\ |
1273 | ".\stdafx.h"\ | 1241 | ".\stdafx.h"\ |
1274 | 1242 | ||
1275 | 1243 | ||
1276 | "$(INTDIR)\Resolver.obj" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ | 1244 | "$(INTDIR)\Resolver.obj" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ |
1277 | "$(INTDIR)\pumpkin.pch" | 1245 | "$(INTDIR)\pumpkin.pch" |
1278 | 1246 | ||
1279 | 1247 | ||
1280 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1248 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1281 | 1249 | ||
1282 | DEP_CPP_RESOL=\ | 1250 | DEP_CPP_RESOL=\ |
1283 | ".\pumpkin.h"\ | 1251 | ".\pumpkin.h"\ |
1284 | ".\PumpKINDlg.h"\ | 1252 | ".\PumpKINDlg.h"\ |
1285 | ".\Resolver.h"\ | 1253 | ".\Resolver.h"\ |
1254 | ".\shared-code\BellsNWhistles.h"\ | ||
1286 | ".\shared-code\kHelpers.h"\ | 1255 | ".\shared-code\kHelpers.h"\ |
1287 | ".\stdafx.h"\ | 1256 | ".\stdafx.h"\ |
1288 | 1257 | ||
1289 | 1258 | ||
1290 | "$(INTDIR)\Resolver.obj" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ | 1259 | "$(INTDIR)\Resolver.obj" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ |
1291 | "$(INTDIR)\pumpkin.pch" | 1260 | "$(INTDIR)\pumpkin.pch" |
1292 | 1261 | ||
1293 | "$(INTDIR)\Resolver.sbr" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ | 1262 | "$(INTDIR)\Resolver.sbr" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ |
1294 | "$(INTDIR)\pumpkin.pch" | 1263 | "$(INTDIR)\pumpkin.pch" |
1295 | 1264 | ||
1296 | 1265 | ||
1297 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1266 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1298 | 1267 | ||
1299 | DEP_CPP_RESOL=\ | 1268 | DEP_CPP_RESOL=\ |
1300 | ".\pumpkin.h"\ | 1269 | ".\pumpkin.h"\ |
1301 | ".\PumpKINDlg.h"\ | 1270 | ".\PumpKINDlg.h"\ |
1302 | ".\Resolver.h"\ | 1271 | ".\Resolver.h"\ |
1303 | ".\shared-code\BellsNWhistles.h"\ | 1272 | ".\shared-code\BellsNWhistles.h"\ |
1304 | ".\shared-code\kHelpers.h"\ | 1273 | ".\shared-code\kHelpers.h"\ |
1305 | ".\stdafx.h"\ | 1274 | ".\stdafx.h"\ |
1306 | 1275 | ||
1307 | 1276 | ||
1308 | "$(INTDIR)\Resolver.obj" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ | 1277 | "$(INTDIR)\Resolver.obj" : $(SOURCE) $(DEP_CPP_RESOL) "$(INTDIR)"\ |
1309 | "$(INTDIR)\pumpkin.pch" | 1278 | "$(INTDIR)\pumpkin.pch" |
1310 | 1279 | ||
1311 | 1280 | ||
1312 | !ENDIF | 1281 | !ENDIF |
1313 | 1282 | ||
1314 | # End Source File | 1283 | # End Source File |
1315 | ################################################################################ | 1284 | ################################################################################ |
1316 | # Begin Source File | 1285 | # Begin Source File |
1317 | 1286 | ||
1318 | SOURCE=.\Retrier.cpp | 1287 | SOURCE=.\Retrier.cpp |
1319 | 1288 | ||
1320 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1289 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1321 | 1290 | ||
1322 | DEP_CPP_RETRI=\ | 1291 | DEP_CPP_RETRI=\ |
1323 | ".\pumpkin.h"\ | 1292 | ".\pumpkin.h"\ |
1324 | ".\PumpKINDlg.h"\ | 1293 | ".\PumpKINDlg.h"\ |
1325 | ".\Retrier.h"\ | 1294 | ".\Retrier.h"\ |
1326 | ".\shared-code\BellsNWhistles.h"\ | 1295 | ".\shared-code\BellsNWhistles.h"\ |
1327 | ".\shared-code\kHelpers.h"\ | 1296 | ".\shared-code\kHelpers.h"\ |
1328 | ".\stdafx.h"\ | 1297 | ".\stdafx.h"\ |
1329 | 1298 | ||
1330 | 1299 | ||
1331 | "$(INTDIR)\Retrier.obj" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ | 1300 | "$(INTDIR)\Retrier.obj" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ |
1332 | "$(INTDIR)\pumpkin.pch" | 1301 | "$(INTDIR)\pumpkin.pch" |
1333 | 1302 | ||
1334 | 1303 | ||
1335 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1304 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1336 | 1305 | ||
1337 | DEP_CPP_RETRI=\ | 1306 | DEP_CPP_RETRI=\ |
1338 | ".\pumpkin.h"\ | 1307 | ".\pumpkin.h"\ |
1339 | ".\PumpKINDlg.h"\ | 1308 | ".\PumpKINDlg.h"\ |
1340 | ".\Retrier.h"\ | 1309 | ".\Retrier.h"\ |
1310 | ".\shared-code\BellsNWhistles.h"\ | ||
1341 | ".\shared-code\kHelpers.h"\ | 1311 | ".\shared-code\kHelpers.h"\ |
1342 | ".\stdafx.h"\ | 1312 | ".\stdafx.h"\ |
1343 | 1313 | ||
1344 | 1314 | ||
1345 | "$(INTDIR)\Retrier.obj" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ | 1315 | "$(INTDIR)\Retrier.obj" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ |
1346 | "$(INTDIR)\pumpkin.pch" | 1316 | "$(INTDIR)\pumpkin.pch" |
1347 | 1317 | ||
1348 | "$(INTDIR)\Retrier.sbr" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ | 1318 | "$(INTDIR)\Retrier.sbr" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ |
1349 | "$(INTDIR)\pumpkin.pch" | 1319 | "$(INTDIR)\pumpkin.pch" |
1350 | 1320 | ||
1351 | 1321 | ||
1352 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1322 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1353 | 1323 | ||
1354 | DEP_CPP_RETRI=\ | 1324 | DEP_CPP_RETRI=\ |
1355 | ".\pumpkin.h"\ | 1325 | ".\pumpkin.h"\ |
1356 | ".\PumpKINDlg.h"\ | 1326 | ".\PumpKINDlg.h"\ |
1357 | ".\Retrier.h"\ | 1327 | ".\Retrier.h"\ |
1358 | ".\shared-code\BellsNWhistles.h"\ | 1328 | ".\shared-code\BellsNWhistles.h"\ |
1359 | ".\shared-code\kHelpers.h"\ | 1329 | ".\shared-code\kHelpers.h"\ |
1360 | ".\stdafx.h"\ | 1330 | ".\stdafx.h"\ |
1361 | 1331 | ||
1362 | 1332 | ||
1363 | "$(INTDIR)\Retrier.obj" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ | 1333 | "$(INTDIR)\Retrier.obj" : $(SOURCE) $(DEP_CPP_RETRI) "$(INTDIR)"\ |
1364 | "$(INTDIR)\pumpkin.pch" | 1334 | "$(INTDIR)\pumpkin.pch" |
1365 | 1335 | ||
1366 | 1336 | ||
1367 | !ENDIF | 1337 | !ENDIF |
1368 | 1338 | ||
1369 | # End Source File | 1339 | # End Source File |
1370 | ################################################################################ | 1340 | ################################################################################ |
1371 | # Begin Source File | 1341 | # Begin Source File |
1372 | 1342 | ||
1373 | SOURCE=.\Trayer.cpp | 1343 | SOURCE=.\Trayer.cpp |
1374 | 1344 | ||
1375 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1345 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1376 | 1346 | ||
1377 | DEP_CPP_TRAYE=\ | 1347 | DEP_CPP_TRAYE=\ |
1378 | ".\pumpkin.h"\ | 1348 | ".\pumpkin.h"\ |
1379 | ".\PumpKINDlg.h"\ | 1349 | ".\PumpKINDlg.h"\ |
1380 | ".\shared-code\BellsNWhistles.h"\ | 1350 | ".\shared-code\BellsNWhistles.h"\ |
1381 | ".\shared-code\kHelpers.h"\ | 1351 | ".\shared-code\kHelpers.h"\ |
1382 | ".\stdafx.h"\ | 1352 | ".\stdafx.h"\ |
1383 | ".\Trayer.h"\ | 1353 | ".\Trayer.h"\ |
1384 | 1354 | ||
1385 | 1355 | ||
1386 | "$(INTDIR)\Trayer.obj" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ | 1356 | "$(INTDIR)\Trayer.obj" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ |
1387 | "$(INTDIR)\pumpkin.pch" | 1357 | "$(INTDIR)\pumpkin.pch" |
1388 | 1358 | ||
1389 | 1359 | ||
1390 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1360 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1391 | 1361 | ||
1392 | DEP_CPP_TRAYE=\ | 1362 | DEP_CPP_TRAYE=\ |
1393 | ".\pumpkin.h"\ | 1363 | ".\pumpkin.h"\ |
1394 | ".\PumpKINDlg.h"\ | 1364 | ".\PumpKINDlg.h"\ |
1365 | ".\shared-code\BellsNWhistles.h"\ | ||
1395 | ".\shared-code\kHelpers.h"\ | 1366 | ".\shared-code\kHelpers.h"\ |
1396 | ".\stdafx.h"\ | 1367 | ".\stdafx.h"\ |
1397 | ".\Trayer.h"\ | 1368 | ".\Trayer.h"\ |
1398 | 1369 | ||
1399 | 1370 | ||
1400 | "$(INTDIR)\Trayer.obj" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ | 1371 | "$(INTDIR)\Trayer.obj" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ |
1401 | "$(INTDIR)\pumpkin.pch" | 1372 | "$(INTDIR)\pumpkin.pch" |
1402 | 1373 | ||
1403 | "$(INTDIR)\Trayer.sbr" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ | 1374 | "$(INTDIR)\Trayer.sbr" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ |
1404 | "$(INTDIR)\pumpkin.pch" | 1375 | "$(INTDIR)\pumpkin.pch" |
1405 | 1376 | ||
1406 | 1377 | ||
1407 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1378 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1408 | 1379 | ||
1409 | DEP_CPP_TRAYE=\ | 1380 | DEP_CPP_TRAYE=\ |
1410 | ".\pumpkin.h"\ | 1381 | ".\pumpkin.h"\ |
1411 | ".\PumpKINDlg.h"\ | 1382 | ".\PumpKINDlg.h"\ |
1412 | ".\shared-code\BellsNWhistles.h"\ | 1383 | ".\shared-code\BellsNWhistles.h"\ |
1413 | ".\shared-code\kHelpers.h"\ | 1384 | ".\shared-code\kHelpers.h"\ |
1414 | ".\stdafx.h"\ | 1385 | ".\stdafx.h"\ |
1415 | ".\Trayer.h"\ | 1386 | ".\Trayer.h"\ |
1416 | 1387 | ||
1417 | 1388 | ||
1418 | "$(INTDIR)\Trayer.obj" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ | 1389 | "$(INTDIR)\Trayer.obj" : $(SOURCE) $(DEP_CPP_TRAYE) "$(INTDIR)"\ |
1419 | "$(INTDIR)\pumpkin.pch" | 1390 | "$(INTDIR)\pumpkin.pch" |
1420 | 1391 | ||
1421 | 1392 | ||
1422 | !ENDIF | 1393 | !ENDIF |
1423 | 1394 | ||
1424 | # End Source File | 1395 | # End Source File |
1425 | ################################################################################ | 1396 | ################################################################################ |
1426 | # Begin Source File | 1397 | # Begin Source File |
1427 | 1398 | ||
1428 | SOURCE=.\help\pumpkin.cnt | 1399 | SOURCE=.\help\pumpkin.cnt |
1429 | 1400 | ||
1430 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1401 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1431 | 1402 | ||
1432 | # PROP Exclude_From_Build 1 | 1403 | # PROP Exclude_From_Build 1 |
1433 | 1404 | ||
1434 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1405 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1435 | 1406 | ||
1436 | # PROP Exclude_From_Build 1 | 1407 | # PROP Exclude_From_Build 1 |
1437 | 1408 | ||
1438 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1409 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1439 | 1410 | ||
1440 | # PROP Exclude_From_Build 1 | 1411 | # PROP Exclude_From_Build 1 |
1441 | 1412 | ||
1442 | !ENDIF | 1413 | !ENDIF |
1443 | 1414 | ||
1444 | # End Source File | 1415 | # End Source File |
1445 | ################################################################################ | 1416 | ################################################################################ |
1446 | # Begin Source File | 1417 | # Begin Source File |
1447 | 1418 | ||
1448 | SOURCE=.\PropsSounds.cpp | 1419 | SOURCE=.\PropsSounds.cpp |
1449 | 1420 | ||
1450 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1421 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1451 | 1422 | ||
1452 | DEP_CPP_PROPSS=\ | 1423 | DEP_CPP_PROPSS=\ |
1453 | ".\PropsSounds.h"\ | 1424 | ".\PropsSounds.h"\ |
1454 | ".\pumpkin.h"\ | 1425 | ".\pumpkin.h"\ |
1455 | ".\PumpKINDlg.h"\ | 1426 | ".\PumpKINDlg.h"\ |
1456 | ".\shared-code\BellsNWhistles.h"\ | 1427 | ".\shared-code\BellsNWhistles.h"\ |
1457 | ".\shared-code\kHelpers.h"\ | 1428 | ".\shared-code\kHelpers.h"\ |
1458 | ".\stdafx.h"\ | 1429 | ".\stdafx.h"\ |
1459 | 1430 | ||
1460 | 1431 | ||
1461 | "$(INTDIR)\PropsSounds.obj" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ | 1432 | "$(INTDIR)\PropsSounds.obj" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ |
1462 | "$(INTDIR)\pumpkin.pch" | 1433 | "$(INTDIR)\pumpkin.pch" |
1463 | 1434 | ||
1464 | 1435 | ||
1465 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1436 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1466 | 1437 | ||
1467 | DEP_CPP_PROPSS=\ | 1438 | DEP_CPP_PROPSS=\ |
1468 | ".\PropsSounds.h"\ | 1439 | ".\PropsSounds.h"\ |
1469 | ".\pumpkin.h"\ | 1440 | ".\pumpkin.h"\ |
1470 | ".\PumpKINDlg.h"\ | 1441 | ".\PumpKINDlg.h"\ |
1442 | ".\shared-code\BellsNWhistles.h"\ | ||
1471 | ".\shared-code\kHelpers.h"\ | 1443 | ".\shared-code\kHelpers.h"\ |
1472 | ".\stdafx.h"\ | 1444 | ".\stdafx.h"\ |
1473 | 1445 | ||
1474 | 1446 | ||
1475 | "$(INTDIR)\PropsSounds.obj" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ | 1447 | "$(INTDIR)\PropsSounds.obj" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ |
1476 | "$(INTDIR)\pumpkin.pch" | 1448 | "$(INTDIR)\pumpkin.pch" |
1477 | 1449 | ||
1478 | "$(INTDIR)\PropsSounds.sbr" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ | 1450 | "$(INTDIR)\PropsSounds.sbr" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ |
1479 | "$(INTDIR)\pumpkin.pch" | 1451 | "$(INTDIR)\pumpkin.pch" |
1480 | 1452 | ||
1481 | 1453 | ||
1482 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1454 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1483 | 1455 | ||
1484 | DEP_CPP_PROPSS=\ | 1456 | DEP_CPP_PROPSS=\ |
1485 | ".\PropsSounds.h"\ | 1457 | ".\PropsSounds.h"\ |
1486 | ".\pumpkin.h"\ | 1458 | ".\pumpkin.h"\ |
1487 | ".\PumpKINDlg.h"\ | 1459 | ".\PumpKINDlg.h"\ |
1488 | ".\shared-code\BellsNWhistles.h"\ | 1460 | ".\shared-code\BellsNWhistles.h"\ |
1489 | ".\shared-code\kHelpers.h"\ | 1461 | ".\shared-code\kHelpers.h"\ |
1490 | ".\stdafx.h"\ | 1462 | ".\stdafx.h"\ |
1491 | 1463 | ||
1492 | 1464 | ||
1493 | "$(INTDIR)\PropsSounds.obj" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ | 1465 | "$(INTDIR)\PropsSounds.obj" : $(SOURCE) $(DEP_CPP_PROPSS) "$(INTDIR)"\ |
1494 | "$(INTDIR)\pumpkin.pch" | 1466 | "$(INTDIR)\pumpkin.pch" |
1495 | 1467 | ||
1496 | 1468 | ||
1497 | !ENDIF | 1469 | !ENDIF |
1498 | 1470 | ||
1499 | # End Source File | 1471 | # End Source File |
1500 | ################################################################################ | 1472 | ################################################################################ |
1501 | # Begin Source File | 1473 | # Begin Source File |
1502 | 1474 | ||
1503 | SOURCE=.\PropsACL.cpp | 1475 | SOURCE=.\PropsACL.cpp |
1504 | |||
1505 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | ||
1506 | |||
1507 | DEP_CPP_PROPSA=\ | 1476 | DEP_CPP_PROPSA=\ |
1508 | ".\ACLTargetCombo.h"\ | 1477 | ".\ACLTargetCombo.h"\ |
1509 | ".\PropsACL.h"\ | 1478 | ".\PropsACL.h"\ |
1510 | ".\pumpkin.h"\ | 1479 | ".\pumpkin.h"\ |
1511 | ".\PumpKINDlg.h"\ | 1480 | ".\PumpKINDlg.h"\ |
1512 | ".\shared-code\BellsNWhistles.h"\ | 1481 | ".\shared-code\BellsNWhistles.h"\ |
1513 | ".\shared-code\kHelpers.h"\ | 1482 | ".\shared-code\kHelpers.h"\ |
1514 | ".\stdafx.h"\ | 1483 | ".\stdafx.h"\ |
1515 | 1484 | ||
1516 | 1485 | ||
1486 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | ||
1487 | |||
1488 | |||
1517 | "$(INTDIR)\PropsACL.obj" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ | 1489 | "$(INTDIR)\PropsACL.obj" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ |
1518 | "$(INTDIR)\pumpkin.pch" | 1490 | "$(INTDIR)\pumpkin.pch" |
1519 | 1491 | ||
1520 | 1492 | ||
1521 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1493 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1522 | 1494 | ||
1523 | DEP_CPP_PROPSA=\ | ||
1524 | ".\ACLTargetCombo.h"\ | ||
1525 | ".\PropsACL.h"\ | ||
1526 | ".\pumpkin.h"\ | ||
1527 | ".\PumpKINDlg.h"\ | ||
1528 | ".\shared-code\kHelpers.h"\ | ||
1529 | ".\stdafx.h"\ | ||
1530 | |||
1531 | 1495 | ||
1532 | "$(INTDIR)\PropsACL.obj" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ | 1496 | "$(INTDIR)\PropsACL.obj" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ |
1533 | "$(INTDIR)\pumpkin.pch" | 1497 | "$(INTDIR)\pumpkin.pch" |
1534 | 1498 | ||
1535 | "$(INTDIR)\PropsACL.sbr" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ | 1499 | "$(INTDIR)\PropsACL.sbr" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ |
1536 | "$(INTDIR)\pumpkin.pch" | 1500 | "$(INTDIR)\pumpkin.pch" |
1537 | 1501 | ||
1538 | 1502 | ||
1539 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1503 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1540 | 1504 | ||
1541 | DEP_CPP_PROPSA=\ | ||
1542 | ".\ACLTargetCombo.h"\ | ||
1543 | ".\PropsACL.h"\ | ||
1544 | ".\pumpkin.h"\ | ||
1545 | ".\PumpKINDlg.h"\ | ||
1546 | ".\shared-code\BellsNWhistles.h"\ | ||
1547 | ".\shared-code\kHelpers.h"\ | ||
1548 | ".\stdafx.h"\ | ||
1549 | |||
1550 | 1505 | ||
1551 | "$(INTDIR)\PropsACL.obj" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ | 1506 | "$(INTDIR)\PropsACL.obj" : $(SOURCE) $(DEP_CPP_PROPSA) "$(INTDIR)"\ |
1552 | "$(INTDIR)\pumpkin.pch" | 1507 | "$(INTDIR)\pumpkin.pch" |
1553 | 1508 | ||
1554 | 1509 | ||
1555 | !ENDIF | 1510 | !ENDIF |
1556 | 1511 | ||
1557 | # End Source File | 1512 | # End Source File |
1558 | ################################################################################ | 1513 | ################################################################################ |
1559 | # Begin Source File | 1514 | # Begin Source File |
1560 | 1515 | ||
1561 | SOURCE=.\ACLTargetCombo.cpp | 1516 | SOURCE=.\ACLTargetCombo.cpp |
1562 | 1517 | ||
1563 | !IF "$(CFG)" == "PumpKIN - Win32 Release" | 1518 | !IF "$(CFG)" == "PumpKIN - Win32 Release" |
1564 | 1519 | ||
1565 | DEP_CPP_ACLTA=\ | 1520 | DEP_CPP_ACLTA=\ |
1566 | ".\ACLTargetCombo.h"\ | 1521 | ".\ACLTargetCombo.h"\ |
1567 | ".\pumpkin.h"\ | 1522 | ".\pumpkin.h"\ |
1568 | ".\PumpKINDlg.h"\ | 1523 | ".\PumpKINDlg.h"\ |
1569 | ".\shared-code\BellsNWhistles.h"\ | 1524 | ".\shared-code\BellsNWhistles.h"\ |
1570 | ".\shared-code\kHelpers.h"\ | 1525 | ".\shared-code\kHelpers.h"\ |
1571 | ".\stdafx.h"\ | 1526 | ".\stdafx.h"\ |
1572 | 1527 | ||
1573 | 1528 | ||
1574 | "$(INTDIR)\ACLTargetCombo.obj" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ | 1529 | "$(INTDIR)\ACLTargetCombo.obj" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ |
1575 | "$(INTDIR)\pumpkin.pch" | 1530 | "$(INTDIR)\pumpkin.pch" |
1576 | 1531 | ||
1577 | 1532 | ||
1578 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" | 1533 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Debug" |
1579 | 1534 | ||
1580 | DEP_CPP_ACLTA=\ | 1535 | DEP_CPP_ACLTA=\ |
1581 | ".\ACLTargetCombo.h"\ | 1536 | ".\ACLTargetCombo.h"\ |
1582 | ".\pumpkin.h"\ | 1537 | ".\pumpkin.h"\ |
1583 | ".\PumpKINDlg.h"\ | 1538 | ".\PumpKINDlg.h"\ |
1539 | ".\shared-code\BellsNWhistles.h"\ | ||
1584 | ".\shared-code\kHelpers.h"\ | 1540 | ".\shared-code\kHelpers.h"\ |
1585 | ".\stdafx.h"\ | 1541 | ".\stdafx.h"\ |
1586 | 1542 | ||
1587 | 1543 | ||
1588 | "$(INTDIR)\ACLTargetCombo.obj" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ | 1544 | "$(INTDIR)\ACLTargetCombo.obj" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ |
1589 | "$(INTDIR)\pumpkin.pch" | 1545 | "$(INTDIR)\pumpkin.pch" |
1590 | 1546 | ||
1591 | "$(INTDIR)\ACLTargetCombo.sbr" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ | 1547 | "$(INTDIR)\ACLTargetCombo.sbr" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ |
1592 | "$(INTDIR)\pumpkin.pch" | 1548 | "$(INTDIR)\pumpkin.pch" |
1593 | 1549 | ||
1594 | 1550 | ||
1595 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" | 1551 | !ELSEIF "$(CFG)" == "PumpKIN - Win32 Static" |
1596 | 1552 | ||
1597 | DEP_CPP_ACLTA=\ | 1553 | DEP_CPP_ACLTA=\ |
1598 | ".\ACLTargetCombo.h"\ | 1554 | ".\ACLTargetCombo.h"\ |
1599 | ".\pumpkin.h"\ | 1555 | ".\pumpkin.h"\ |
1600 | ".\PumpKINDlg.h"\ | 1556 | ".\PumpKINDlg.h"\ |
1601 | ".\shared-code\BellsNWhistles.h"\ | 1557 | ".\shared-code\BellsNWhistles.h"\ |
1602 | ".\shared-code\kHelpers.h"\ | 1558 | ".\shared-code\kHelpers.h"\ |
1603 | ".\stdafx.h"\ | 1559 | ".\stdafx.h"\ |
1604 | 1560 | ||
1605 | 1561 | ||
1606 | "$(INTDIR)\ACLTargetCombo.obj" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ | 1562 | "$(INTDIR)\ACLTargetCombo.obj" : $(SOURCE) $(DEP_CPP_ACLTA) "$(INTDIR)"\ |
1607 | "$(INTDIR)\pumpkin.pch" | 1563 | "$(INTDIR)\pumpkin.pch" |
1608 | 1564 | ||
1609 | 1565 | ||
1610 | !ENDIF | 1566 | !ENDIF |
1611 | 1567 | ||
1612 | # End Source File | 1568 | # End Source File |
1613 | # End Target | 1569 | # End Target |
1614 | ################################################################################ | 1570 | ################################################################################ |
1615 | # Begin Target | 1571 | # Begin Target |
1616 | 1572 | ||
1617 | # Name "Install - Win32 Debug" | 1573 | # Name "Install - Win32 Debug" |
1618 | # Name "Install - Win32 Pure" | 1574 | # Name "Install - Win32 Pure" |
1619 | # Name "Install - Win32 Static" | 1575 | # Name "Install - Win32 Static" |
1620 | # Name "Install - Win32 Canned" | 1576 | # Name "Install - Win32 Canned" |
1621 | 1577 | ||
1622 | !IF "$(CFG)" == "Install - Win32 Debug" | 1578 | !IF "$(CFG)" == "Install - Win32 Debug" |
1623 | 1579 | ||
1624 | !ELSEIF "$(CFG)" == "Install - Win32 Pure" | 1580 | !ELSEIF "$(CFG)" == "Install - Win32 Pure" |
1625 | 1581 | ||
1626 | !ELSEIF "$(CFG)" == "Install - Win32 Static" | 1582 | !ELSEIF "$(CFG)" == "Install - Win32 Static" |
1627 | 1583 | ||
1628 | !ELSEIF "$(CFG)" == "Install - Win32 Canned" | 1584 | !ELSEIF "$(CFG)" == "Install - Win32 Canned" |
1629 | 1585 | ||
1630 | !ENDIF | 1586 | !ENDIF |
1631 | 1587 | ||
@@ -49,121 +49,121 @@ BEGIN | |||
49 | "#ifdef _WIN32\r\n" | 49 | "#ifdef _WIN32\r\n" |
50 | "LANGUAGE 9, 1\r\n" | 50 | "LANGUAGE 9, 1\r\n" |
51 | "#pragma code_page(1252)\r\n" | 51 | "#pragma code_page(1252)\r\n" |
52 | "#endif\r\n" | 52 | "#endif\r\n" |
53 | "#include ""res\\PumpKIN.rc2"" // non-Microsoft Visual C++ edited resources\r\n" | 53 | "#include ""res\\PumpKIN.rc2"" // non-Microsoft Visual C++ edited resources\r\n" |
54 | "#include ""afxres.rc"" // Standard components\r\n" | 54 | "#include ""afxres.rc"" // Standard components\r\n" |
55 | "#endif\0" | 55 | "#endif\0" |
56 | END | 56 | END |
57 | 57 | ||
58 | #endif // APSTUDIO_INVOKED | 58 | #endif // APSTUDIO_INVOKED |
59 | 59 | ||
60 | 60 | ||
61 | ///////////////////////////////////////////////////////////////////////////// | 61 | ///////////////////////////////////////////////////////////////////////////// |
62 | // | 62 | // |
63 | // Icon | 63 | // Icon |
64 | // | 64 | // |
65 | 65 | ||
66 | // Icon with lowest ID value placed first to ensure application icon | 66 | // Icon with lowest ID value placed first to ensure application icon |
67 | // remains consistent on all systems. | 67 | // remains consistent on all systems. |
68 | IDI_RRQ ICON DISCARDABLE "res\\wrq.ico" | 68 | IDI_RRQ ICON DISCARDABLE "res\\wrq.ico" |
69 | IDI_WRQ ICON DISCARDABLE "res\\rrq.ico" | 69 | IDI_WRQ ICON DISCARDABLE "res\\rrq.ico" |
70 | IDI_BROWSE ICON DISCARDABLE "shared-data/browse-icon.ico" | 70 | IDI_BROWSE ICON DISCARDABLE "shared-data/browse-icon.ico" |
71 | IDR_MAINFRAME ICON DISCARDABLE "res\\pumpkin.ico" | 71 | IDR_MAINFRAME ICON DISCARDABLE "res\\pumpkin.ico" |
72 | IDI_PLAY ICON DISCARDABLE "shared-data/play-icon.ico" | 72 | IDI_PLAY ICON DISCARDABLE "shared-data/play-icon.ico" |
73 | IDI_UP ICON DISCARDABLE "res\\up.ico" | 73 | IDI_UP ICON DISCARDABLE "res\\up.ico" |
74 | IDI_DOWN ICON DISCARDABLE "res\\down.ico" | 74 | IDI_DOWN ICON DISCARDABLE "res\\down.ico" |
75 | IDI_REMOVE ICON DISCARDABLE "res\\remove.ico" | 75 | IDI_REMOVE ICON DISCARDABLE "res\\remove.ico" |
76 | 76 | ||
77 | ///////////////////////////////////////////////////////////////////////////// | 77 | ///////////////////////////////////////////////////////////////////////////// |
78 | // | 78 | // |
79 | // Dialog | 79 | // Dialog |
80 | // | 80 | // |
81 | 81 | ||
82 | IDD_ABOUTBOX DIALOG DISCARDABLE 0, 0, 217, 74 | 82 | IDD_ABOUTBOX DIALOG DISCARDABLE 0, 0, 217, 74 |
83 | STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | 83 | STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU |
84 | CAPTION "About PumpKIN" | 84 | CAPTION "About PumpKIN" |
85 | FONT 8, "MS Sans Serif" | 85 | FONT 8, "MS Sans Serif" |
86 | BEGIN | 86 | BEGIN |
87 | ICON IDR_MAINFRAME,IDC_STATIC,7,17,18,20 | 87 | ICON IDR_MAINFRAME,IDC_STATIC,7,17,18,20 |
88 | LTEXT "PumpKIN, Version 2.7",IDC_STATIC,40,15,119,8, | 88 | LTEXT "PumpKIN, Version 2.7",IDC_STATIC,40,15,119,8, |
89 | SS_NOPREFIX | 89 | SS_NOPREFIX |
90 | LTEXT "Copyright © 1997-2006 Klever Group",IDC_STATIC,40,30, | 90 | LTEXT "Copyright © 1997-2006 Klever Group",IDC_STATIC,40,30, |
91 | 170,8 | 91 | 170,8 |
92 | DEFPUSHBUTTON "OK",IDOK,178,7,32,14,WS_GROUP | 92 | DEFPUSHBUTTON "OK",IDOK,178,7,32,14,WS_GROUP |
93 | PUSHBUTTON "http://www.klever.net/",IDC_KLEVERNET,124,53,86,14 | 93 | PUSHBUTTON "http://www.klever.net/",IDC_KLEVERNET,124,53,86,14 |
94 | END | 94 | END |
95 | 95 | ||
96 | IDD_PUMPKIN_DIALOG DIALOGEX 0, 0, 362, 193 | 96 | IDD_PUMPKIN_DIALOG DIALOGEX 0, 0, 362, 193 |
97 | STYLE DS_MODALFRAME | DS_3DLOOK | WS_POPUP | WS_VISIBLE | WS_CAPTION | | 97 | STYLE DS_3DLOOK | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME |
98 | WS_SYSMENU | ||
99 | EXSTYLE WS_EX_ACCEPTFILES | WS_EX_APPWINDOW | 98 | EXSTYLE WS_EX_ACCEPTFILES | WS_EX_APPWINDOW |
100 | CAPTION " PumpKIN" | 99 | CAPTION " PumpKIN" |
101 | FONT 8, "MS Sans Serif" | 100 | FONT 8, "MS Sans Serif" |
102 | BEGIN | 101 | BEGIN |
103 | CONTROL "List1",IDC_CONNECTIONS,"SysListView32",LVS_REPORT | | 102 | CONTROL "List1",IDC_CONNECTIONS,"SysListView32",LVS_REPORT | |
104 | LVS_AUTOARRANGE | WS_BORDER | WS_TABSTOP,7,7,295,108, | 103 | LVS_AUTOARRANGE | WS_BORDER | WS_TABSTOP,7,7,295,108, |
105 | WS_EX_DLGMODALFRAME | 104 | WS_EX_DLGMODALFRAME |
106 | PUSHBUTTON "&Get File",IDC_GET,305,7,50,17,BS_NOTIFY, | 105 | PUSHBUTTON "&Get File",IDC_GET,305,7,50,17,BS_NOTIFY, |
107 | WS_EX_CLIENTEDGE | 106 | WS_EX_CLIENTEDGE |
108 | PUSHBUTTON "&Put File",IDC_PUT,305,25,50,17,BS_NOTIFY, | 107 | PUSHBUTTON "&Put File",IDC_PUT,305,25,50,17,BS_NOTIFY, |
109 | WS_EX_CLIENTEDGE | 108 | WS_EX_CLIENTEDGE |
110 | PUSHBUTTON "&Abort xfer",IDC_ABORT,305,43,50,17,BS_NOTIFY, | 109 | PUSHBUTTON "&Abort xfer",IDC_ABORT,305,43,50,17,BS_NOTIFY, |
111 | WS_EX_CLIENTEDGE | 110 | WS_EX_CLIENTEDGE |
112 | PUSHBUTTON "&Options",IDC_OPTIONS,305,61,50,17,BS_NOTIFY, | 111 | PUSHBUTTON "&Options",IDC_OPTIONS,305,61,50,17,BS_NOTIFY, |
113 | WS_EX_CLIENTEDGE | 112 | WS_EX_CLIENTEDGE |
114 | PUSHBUTTON "E&xit",IDC_EXIT,305,79,50,17,BS_NOTIFY,WS_EX_CLIENTEDGE | 113 | PUSHBUTTON "E&xit",IDC_EXIT,305,79,50,17,BS_NOTIFY,WS_EX_CLIENTEDGE |
115 | PUSHBUTTON "&Help",ID_HELP,305,97,50,17,BS_NOTIFY,WS_EX_CLIENTEDGE | 114 | PUSHBUTTON "&Help",ID_HELP,305,97,50,17,BS_NOTIFY,WS_EX_CLIENTEDGE |
116 | LISTBOX IDC_LOG,7,115,348,65,LBS_USETABSTOPS | LBS_NOSEL | | 115 | LISTBOX IDC_LOG,7,115,348,64,LBS_USETABSTOPS | |
117 | WS_VSCROLL | WS_HSCROLL,WS_EX_DLGMODALFRAME | 116 | LBS_NOINTEGRALHEIGHT | LBS_NOSEL | WS_VSCROLL | |
117 | WS_HSCROLL,WS_EX_DLGMODALFRAME | ||
118 | PUSHBUTTON "..",IDCANCEL,0,183,6,7,NOT WS_VISIBLE | NOT WS_TABSTOP | 118 | PUSHBUTTON "..",IDCANCEL,0,183,6,7,NOT WS_VISIBLE | NOT WS_TABSTOP |
119 | CONTROL "&Server is running",IDC_LISTENING,"Button", | 119 | CONTROL "&Server is running",IDC_LISTENING,"Button", |
120 | BS_AUTOCHECKBOX | BS_LEFTTEXT | BS_FLAT | WS_TABSTOP,286, | 120 | BS_AUTOCHECKBOX | BS_LEFTTEXT | BS_FLAT | WS_TABSTOP,286, |
121 | 180,69,11,WS_EX_TRANSPARENT | WS_EX_STATICEDGE | 121 | 181,69,11,WS_EX_TRANSPARENT | WS_EX_STATICEDGE |
122 | END | 122 | END |
123 | 123 | ||
124 | IDD_PROPS_SERVER DIALOG DISCARDABLE 0, 0, 300, 201 | 124 | IDD_PROPS_SERVER DIALOG DISCARDABLE 0, 0, 300, 201 |
125 | STYLE WS_CHILD | WS_DISABLED | WS_CAPTION | 125 | STYLE WS_CHILD | WS_DISABLED | WS_CAPTION |
126 | CAPTION "Server" | 126 | CAPTION "Server" |
127 | FONT 8, "MS Sans Serif" | 127 | FONT 8, "MS Sans Serif" |
128 | BEGIN | 128 | BEGIN |
129 | GROUPBOX "TFTP filesystem &root (download path)",IDC_STATIC,7,7, | 129 | GROUPBOX "TFTP filesystem &root (download path)",IDC_STATIC,7,7, |
130 | 286,38 | 130 | 286,38 |
131 | EDITTEXT IDC_TFTPROOT,13,16,256,13,ES_AUTOHSCROLL | 131 | EDITTEXT IDC_TFTPROOT,13,16,256,13,ES_AUTOHSCROLL |
132 | PUSHBUTTON "&B",IDC_BROWSE,274,16,13,13,BS_ICON | 132 | PUSHBUTTON "&B",IDC_BROWSE,274,16,13,13,BS_ICON |
133 | CONTROL "Allow access to &subdirectories",IDC_TFTPSUBDIRS, | 133 | CONTROL "Allow access to &subdirectories",IDC_TFTPSUBDIRS, |
134 | "Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,31,111,10 | 134 | "Button",BS_AUTOCHECKBOX | WS_TABSTOP,13,31,111,10 |
135 | GROUPBOX "Read Request Behavior",IDC_STATIC,7,48,243,56 | 135 | GROUPBOX "Read Request Behavior",IDC_STATIC,7,48,243,56 |
136 | CONTROL "Give &all files",IDC_RRQ_GIVEALL,"Button", | 136 | CONTROL "Give &all files",IDC_RRQ_GIVEALL,"Button", |
137 | BS_AUTORADIOBUTTON | BS_NOTIFY | WS_GROUP,13,63,53,10 | 137 | BS_AUTORADIOBUTTON | BS_NOTIFY | WS_GROUP,13,63,53,10 |
138 | CONTROL "&Prompt before giving file",IDC_RRQ_ALWAYSCONFIRM, | 138 | CONTROL "&Prompt before giving file",IDC_RRQ_ALWAYSCONFIRM, |
139 | "Button",BS_AUTORADIOBUTTON | BS_NOTIFY,43,75,91,10 | 139 | "Button",BS_AUTORADIOBUTTON | BS_NOTIFY,43,75,91,10 |
140 | CONTROL "&Deny all requests",IDC_RRQ_DENYALL,"Button", | 140 | CONTROL "&Deny all requests",IDC_RRQ_DENYALL,"Button", |
141 | BS_AUTORADIOBUTTON | BS_NOTIFY,73,87,70,10 | 141 | BS_AUTORADIOBUTTON | BS_NOTIFY,73,87,70,10 |
142 | GROUPBOX "Write Request Behavior",IDC_STATIC,7,106,243,56, | 142 | GROUPBOX "Write Request Behavior",IDC_STATIC,7,106,243,56, |
143 | WS_GROUP | 143 | WS_GROUP |
144 | CONTROL "Take a&ll files",IDC_WRQ_TAKEALL,"Button", | 144 | CONTROL "Take a&ll files",IDC_WRQ_TAKEALL,"Button", |
145 | BS_AUTORADIOBUTTON | WS_GROUP,13,116,55,10 | 145 | BS_AUTORADIOBUTTON | WS_GROUP,13,116,55,10 |
146 | CONTROL "Prompt if file &exists",IDC_WRQ_PROMPTEXISTING,"Button", | 146 | CONTROL "Prompt if file &exists",IDC_WRQ_PROMPTEXISTING,"Button", |
147 | BS_AUTORADIOBUTTON,43,126,73,10 | 147 | BS_AUTORADIOBUTTON,43,126,73,10 |
148 | CONTROL "Always pro&mpt before accepting file", | 148 | CONTROL "Always pro&mpt before accepting file", |
149 | IDC_WRQ_ALWAYSCONFIRM,"Button",BS_AUTORADIOBUTTON,73,136, | 149 | IDC_WRQ_ALWAYSCONFIRM,"Button",BS_AUTORADIOBUTTON,73,136, |
150 | 139,10 | 150 | 139,10 |
151 | CONTROL "D&eny all requests",IDC_WRQ_DENYALL,"Button", | 151 | CONTROL "D&eny all requests",IDC_WRQ_DENYALL,"Button", |
152 | BS_AUTORADIOBUTTON,103,146,70,10 | 152 | BS_AUTORADIOBUTTON,103,146,70,10 |
153 | CTEXT "Confirmation &timeout",IDC_STATIC,253,52,40,19, | 153 | CTEXT "Confirmation &timeout",IDC_STATIC,253,52,40,19, |
154 | SS_NOTIFY | 154 | SS_NOTIFY |
155 | CONTROL "Slider1",IDC_PROMPTTIMEOUT,"msctls_trackbar32", | 155 | CONTROL "Slider1",IDC_PROMPTTIMEOUT,"msctls_trackbar32", |
156 | TBS_AUTOTICKS | TBS_VERT | TBS_TOP | WS_TABSTOP,272,72, | 156 | TBS_AUTOTICKS | TBS_VERT | TBS_TOP | WS_TABSTOP,272,72, |
157 | 21,90 | 157 | 21,90 |
158 | GROUPBOX "Log file (leave empty to disable logging to file)", | 158 | GROUPBOX "Log file (leave empty to disable logging to file)", |
159 | IDC_STATIC,7,165,286,29 | 159 | IDC_STATIC,7,165,286,29 |
160 | EDITTEXT IDC_LOGFILE,13,175,256,13,ES_AUTOHSCROLL | 160 | EDITTEXT IDC_LOGFILE,13,175,256,13,ES_AUTOHSCROLL |
161 | PUSHBUTTON "",IDC_LOGFILE_BROWSE,274,175,13,13,BS_ICON | 161 | PUSHBUTTON "",IDC_LOGFILE_BROWSE,274,175,13,13,BS_ICON |
162 | END | 162 | END |
163 | 163 | ||
164 | IDD_PROPS_NETWORK DIALOG DISCARDABLE 0, 0, 300, 201 | 164 | IDD_PROPS_NETWORK DIALOG DISCARDABLE 0, 0, 300, 201 |
165 | STYLE WS_CHILD | WS_DISABLED | WS_CAPTION | 165 | STYLE WS_CHILD | WS_DISABLED | WS_CAPTION |
166 | CAPTION "Network" | 166 | CAPTION "Network" |
167 | FONT 8, "MS Sans Serif" | 167 | FONT 8, "MS Sans Serif" |
168 | BEGIN | 168 | BEGIN |
169 | GROUPBOX "UDP Ports",IDC_STATIC,7,7,286,40 | 169 | GROUPBOX "UDP Ports",IDC_STATIC,7,7,286,40 |