| 1 |
/* movemail foo bar -- move file foo to file bar, |
|---|
| 2 |
locking file foo the way /bin/mail respects. |
|---|
| 3 |
Copyright (C) 1986, 1992, 1993, 1994, 1996, 1997 Free Software Foundation, Inc. |
|---|
| 4 |
|
|---|
| 5 |
This file is part of GNU Emacs. |
|---|
| 6 |
|
|---|
| 7 |
GNU Emacs is free software; you can redistribute it and/or modify |
|---|
| 8 |
it under the terms of the GNU General Public License as published by |
|---|
| 9 |
the Free Software Foundation; either version 2, or (at your option) |
|---|
| 10 |
any later version. |
|---|
| 11 |
|
|---|
| 12 |
GNU Emacs is distributed in the hope that it will be useful, |
|---|
| 13 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 14 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 15 |
GNU General Public License for more details. |
|---|
| 16 |
|
|---|
| 17 |
You should have received a copy of the GNU General Public License |
|---|
| 18 |
along with GNU Emacs; see the file COPYING. If not, write to |
|---|
| 19 |
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|---|
| 20 |
Boston, MA 02111-1307, USA. */ |
|---|
| 21 |
|
|---|
| 22 |
/* |
|---|
| 23 |
* Added Feb, 1998 by OOBA, Koichiro <koichiro@ca.mbn.or.jp> |
|---|
| 24 |
* |
|---|
| 25 |
* Progress dialog. |
|---|
| 26 |
* It works only under x86-win32 systems. |
|---|
| 27 |
* (It requires progdlg.c) |
|---|
| 28 |
* Special thanks to TSUKAHARA, Hiroki. |
|---|
| 29 |
* |
|---|
| 30 |
*/ |
|---|
| 31 |
|
|---|
| 32 |
#include <windows.h> |
|---|
| 33 |
|
|---|
| 34 |
1 DIALOG DISCARDABLE 0, 0, 122, 40 |
|---|
| 35 |
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_BORDER | DS_CENTER | WS_VISIBLE |
|---|
| 36 |
CAPTION "Retrieving message..." |
|---|
| 37 |
FONT 10, "Courier New" |
|---|
| 38 |
BEGIN |
|---|
| 39 |
CONTROL "Progress1", 1, "msctls_progress32", WS_BORDER, 4, 9, 113, 10 |
|---|
| 40 |
CTEXT "", 2, 40, 26, 40, 8 |
|---|
| 41 |
END |
|---|