krb5_mcc_data *mcc_head=0L;
-#ifdef _WINDOWS
-
-/*
- * krb5_change_cache should be called after the cache changes.
- * A notification message is is posted out to all top level
- * windows so that they may recheck the cache based on the
- * changes made. We register a unique message type with which
- * we'll communicate to all other processes.
- */
-void krb_change_cache(int prot);
-
-krb5_error_code
-krb5_change_cache (void) {
- krb_change_cache(5);
- return 0;
-}
-
-unsigned int INTERFACE
-krb5_get_notification_message (void) {
- static unsigned int message = 0;
-
- if (message == 0)
- message = RegisterWindowMessage(WM_KERBEROS5_CHANGED);
-
- return message;
-}
-#else /* _WINDOWS */
-
-krb5_error_code
-krb5_change_cache ()
-{
- return 0;
-}
-unsigned int INTERFACE
-krb5_get_notification_message ()
-{
- return 0;
-}
-
-#endif /* _WINDOWS */