- Moved GetUrlCacheEntryInfoA and CommitUrlCacheEntryA to urlcache.c.
 - Added stub implementation of GetUrlCacheEntryInfoExW.
 - Implemented InternetQueryOptionW, InternetCombineUrl[A|W].
 - InternetSetOptionW prints FIXMEs with more informations.
 - INTERNET_SetLastError was crashing if called after the thread
   local storage area had already been deleted (it happens if you
   close Internet Explorer while the download is still in progress).

diff --git a/include/wininet.h b/include/wininet.h
index 53cf649..fa39b17 100644
--- a/include/wininet.h
+++ b/include/wininet.h
@@ -447,8 +447,11 @@
 #define INTERNET_OPTION_HTTP_VERSION            59
 #define INTERNET_OPTION_RESET_URLCACHE_SESSION  60
 #define INTERNET_OPTION_ERROR_MASK              62
+#define INTERNET_OPTION_CODEPAGE                68
+#define INTERNET_OPTION_PROXY_SETTINGS_CHANGED  95
 #define INTERNET_FIRST_OPTION                   INTERNET_OPTION_CALLBACK
-#define INTERNET_LAST_OPTION                    INTERNET_OPTION_ERROR_MASK
+#define INTERNET_LAST_OPTION                    INTERNET_OPTION_PROXY_SETTINGS_CHANGED
+
 #define INTERNET_PRIORITY_FOREGROUND            1000
 #define INTERNET_HANDLE_TYPE_INTERNET           1
 #define INTERNET_HANDLE_TYPE_CONNECT_FTP        2