Lines Matching refs:notify

28 BOOL ensure_directory(char *pathname, char *new_part, NOTIFYPROC notify)  in ensure_directory()  argument
36 if (!CreateDirectory(pathname, NULL) && notify) in ensure_directory()
37 notify(SYSTEM_ERROR, in ensure_directory()
40 notify(DIR_CREATED, pathname); in ensure_directory()
46 if (notify) in ensure_directory()
47 notify(SYSTEM_ERROR, in ensure_directory()
62 NOTIFYPROC notify) in map_new_file() argument
80 if (notify && notify(CAN_OVERWRITE, filename)) in map_new_file()
88 if (notify) in map_new_file()
89 notify(FILE_OVERWRITTEN, filename); in map_new_file()
94 if (ensure_directory(filename, pathname_part, notify)) in map_new_file()
105 if (notify) in map_new_file()
106 notify (SYSTEM_ERROR, "CreateFile (%s)", filename); in map_new_file()
110 if (notify) in map_new_file()
111 notify(FILE_CREATED, filename); in map_new_file()
130 if (notify) in map_new_file()
131 notify(SYSTEM_ERROR, in map_new_file()
142 if (notify) in map_new_file()
143 notify(SYSTEM_ERROR, "MapViewOfFile (%s)", filename); in map_new_file()
152 int uncomp_size, NOTIFYPROC notify) in extract_file() argument
170 if (notify) in extract_file()
171 notify(ZLIB_ERROR, in extract_file()
177 if (notify) in extract_file()
178 notify(ZLIB_ERROR, in extract_file()
184 if (notify) in extract_file()
185 notify (ZLIB_ERROR, in extract_file()
203 NOTIFYPROC notify) in unzip_archive() argument
306 pcdir->last_mod_file_time, notify); in unzip_archive()
311 notify)) in unzip_archive()
315 if (notify) in unzip_archive()
316 notify(NUM_FILES, new_part, (int)pe->nTotalCDir, in unzip_archive()