diff options
| author | Eli Zaretskii | 2008-05-24 08:39:34 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-05-24 08:39:34 +0000 |
| commit | f481eb312ea63a467bc20514b62af225c0303457 (patch) | |
| tree | 050b7afc6ae87cb5ee353083b2ea030f24e901b1 | |
| parent | b1722a46404813e754e06aef356e48abae02c8f0 (diff) | |
| download | emacs-f481eb312ea63a467bc20514b62af225c0303457.tar.gz emacs-f481eb312ea63a467bc20514b62af225c0303457.zip | |
Include dispextern.h.
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/w32.c | 1 | ||||
| -rw-r--r-- | src/w32proc.c | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b2d854b9a0f..5de6cd8a75e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-05-24 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * w32proc.c: Include dispextern.h. | ||
| 4 | |||
| 5 | * w32.c: Include dispextern.h. | ||
| 6 | |||
| 1 | 2008-05-23 Juanma Barranquero <lekktu@gmail.com> | 7 | 2008-05-23 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 8 | ||
| 3 | * charset.c (Fencode_char, Fsplit_char): Doc fixes. | 9 | * charset.c (Fencode_char, Fsplit_char): Doc fixes. |
| @@ -100,6 +100,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 100 | #include "ndir.h" | 100 | #include "ndir.h" |
| 101 | #include "w32heap.h" | 101 | #include "w32heap.h" |
| 102 | #include "systime.h" | 102 | #include "systime.h" |
| 103 | #include "dispextern.h" /* for xstrcasecmp */ | ||
| 103 | 104 | ||
| 104 | typedef HRESULT (WINAPI * ShGetFolderPath_fn) | 105 | typedef HRESULT (WINAPI * ShGetFolderPath_fn) |
| 105 | (IN HWND, IN int, IN HANDLE, IN DWORD, OUT char *); | 106 | (IN HWND, IN int, IN HANDLE, IN DWORD, OUT char *); |
diff --git a/src/w32proc.c b/src/w32proc.c index 3dce1e1f219..56369e63281 100644 --- a/src/w32proc.c +++ b/src/w32proc.c | |||
| @@ -62,6 +62,7 @@ extern BOOL WINAPI IsValidLocale(LCID, DWORD); | |||
| 62 | #include "process.h" | 62 | #include "process.h" |
| 63 | #include "syssignal.h" | 63 | #include "syssignal.h" |
| 64 | #include "w32term.h" | 64 | #include "w32term.h" |
| 65 | #include "dispextern.h" /* for xstrcasecmp */ | ||
| 65 | 66 | ||
| 66 | #define RVA_TO_PTR(var,section,filedata) \ | 67 | #define RVA_TO_PTR(var,section,filedata) \ |
| 67 | ((void *)((section)->PointerToRawData \ | 68 | ((void *)((section)->PointerToRawData \ |