diff options
| author | Eli Zaretskii | 2008-02-23 13:38:12 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-02-23 13:38:12 +0000 |
| commit | 9d95a291825060fc7a7448ae1edf2fc322a1703b (patch) | |
| tree | 662ca3819d9a3ed822f3c52ef2a826551f370a8f /src | |
| parent | 2872062129ea4b0b33136a5b48c8c51dcd820311 (diff) | |
| download | emacs-9d95a291825060fc7a7448ae1edf2fc322a1703b.tar.gz emacs-9d95a291825060fc7a7448ae1edf2fc322a1703b.zip | |
(globals_of_w32): Add initializations for g_b_init_get_sid_sub_authority and
g_b_init_get_sid_sub_authority_count.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/w32.c | 14 |
2 files changed, 17 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 16ff26c18ef..ac33e998cc5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2008-02-23 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * w32.c (globals_of_w32): Add initializations for | ||
| 4 | g_b_init_get_sid_sub_authority and | ||
| 5 | g_b_init_get_sid_sub_authority_count. | ||
| 6 | |||
| 1 | 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca> | 7 | 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 8 | ||
| 3 | * font.c (font_match_xlfd, font_check_xlfd_parse): New funs. | 9 | * font.c (font_match_xlfd, font_check_xlfd_parse): New funs. |
| @@ -113,9 +113,15 @@ extern Lisp_Object Vw32_get_true_file_attributes; | |||
| 113 | extern int w32_num_mouse_buttons; | 113 | extern int w32_num_mouse_buttons; |
| 114 | 114 | ||
| 115 | 115 | ||
| 116 | /* | 116 | /* Initialization states. |
| 117 | Initialization states | 117 | |
| 118 | */ | 118 | WARNING: If you add any more such variables for additional APIs, |
| 119 | you MUST add initialization for them to globals_of_w32 | ||
| 120 | below. This is because these variables might get set | ||
| 121 | to non-NULL values during dumping, but the dumped Emacs | ||
| 122 | cannot reuse those values, because it could be run on a | ||
| 123 | different version of the OS, where API addresses are | ||
| 124 | different. */ | ||
| 119 | static BOOL g_b_init_is_windows_9x; | 125 | static BOOL g_b_init_is_windows_9x; |
| 120 | static BOOL g_b_init_open_process_token; | 126 | static BOOL g_b_init_open_process_token; |
| 121 | static BOOL g_b_init_get_token_information; | 127 | static BOOL g_b_init_get_token_information; |
| @@ -4294,6 +4300,8 @@ globals_of_w32 () | |||
| 4294 | g_b_init_get_token_information = 0; | 4300 | g_b_init_get_token_information = 0; |
| 4295 | g_b_init_lookup_account_sid = 0; | 4301 | g_b_init_lookup_account_sid = 0; |
| 4296 | g_b_init_get_sid_identifier_authority = 0; | 4302 | g_b_init_get_sid_identifier_authority = 0; |
| 4303 | g_b_init_get_sid_sub_authority = 0; | ||
| 4304 | g_b_init_get_sid_sub_authority_count = 0; | ||
| 4297 | /* The following sets a handler for shutdown notifications for | 4305 | /* The following sets a handler for shutdown notifications for |
| 4298 | console apps. This actually applies to Emacs in both console and | 4306 | console apps. This actually applies to Emacs in both console and |
| 4299 | GUI modes, since we had to fool windows into thinking emacs is a | 4307 | GUI modes, since we had to fool windows into thinking emacs is a |