Lines Matching full:notify
29 BOOL ensure_directory(char *pathname, char *new_part, NOTIFYPROC notify) in ensure_directory() argument
37 if (!CreateDirectory(pathname, NULL) && notify) in ensure_directory()
38 notify(SYSTEM_ERROR, in ensure_directory()
41 notify(DIR_CREATED, pathname); in ensure_directory()
47 if (notify) in ensure_directory()
48 notify(SYSTEM_ERROR, in ensure_directory()
63 NOTIFYPROC notify) in map_new_file() argument
81 if (notify && notify(CAN_OVERWRITE, filename)) in map_new_file()
89 if (notify) in map_new_file()
90 notify(FILE_OVERWRITTEN, filename); in map_new_file()
95 if (ensure_directory(filename, pathname_part, notify)) in map_new_file()
106 if (notify) in map_new_file()
107 notify (SYSTEM_ERROR, "CreateFile (%s)", filename); in map_new_file()
111 if (notify) in map_new_file()
112 notify(FILE_CREATED, filename); in map_new_file()
131 if (notify) in map_new_file()
132 notify(SYSTEM_ERROR, in map_new_file()
143 if (notify) in map_new_file()
144 notify(SYSTEM_ERROR, "MapViewOfFile (%s)", filename); in map_new_file()
153 int uncomp_size, NOTIFYPROC notify) in extract_file() argument
171 if (notify) in extract_file()
172 notify(ZLIB_ERROR, in extract_file()
178 if (notify) in extract_file()
179 notify(ZLIB_ERROR, in extract_file()
185 if (notify) in extract_file()
186 notify (ZLIB_ERROR, in extract_file()
204 NOTIFYPROC notify) in unzip_archive() argument
307 pcdir->last_mod_file_time, notify); in unzip_archive()
312 notify)) in unzip_archive()
316 if (notify) in unzip_archive()
317 notify(NUM_FILES, new_part, (int)pe->nTotalCDir, in unzip_archive()