mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Changed a lot of __MINGW32__ to _WIN32. This should help a bit in
building with native Windows compilers. On request by Brian Gladman.
This commit is contained in:
parent
ee923fb897
commit
da4bf59349
42 changed files with 415 additions and 393 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-07-30 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* util.h: Replaced some __MINGW32__ by _WIN32.
|
||||
|
||||
2003-06-26 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* types.h: Prefer using uint64_t when creating a 64-bit unsigned
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef G10_UTIL_H
|
||||
#define G10_UTIL_H
|
||||
|
||||
#if defined (__MINGW32__) || defined (__CYGWIN32__)
|
||||
#if defined (_WIN32) || defined (__CYGWIN32__)
|
||||
#include <stdarg.h>
|
||||
#endif
|
||||
|
||||
|
@ -229,7 +229,7 @@ int strncasecmp (const char *, const char *b, size_t n);
|
|||
#define memmove(d, s, n) bcopy((s), (d), (n))
|
||||
#endif
|
||||
|
||||
#if defined (__MINGW32__)
|
||||
#if defined (_WIN32)
|
||||
/*-- w32reg.c --*/
|
||||
char *read_w32_registry_string( const char *root,
|
||||
const char *dir, const char *name );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue