Search found 4 matches

by alekc
Thu Jan 25, 2024 9:51 am
Forum: wimlib discussion
Topic: Wimlib_extract_from_pipe and Windows.
Replies: 2
Views: 42180

Re: Wimlib_extract_from_pipe and Windows.

No, I didn't know about this function, thanks. I will be able to check only next week, I will try to write about the result.
by alekc
Wed Jan 24, 2024 2:55 pm
Forum: wimlib discussion
Topic: Wimlib_extract_from_pipe and Windows.
Replies: 2
Views: 42180

Wimlib_extract_from_pipe and Windows.

Is it possible to somehow use the wimlib_extract_image_from_pipe() function with windows pipes? I create a handle for a named pipe using CreateFile(...) and when I use it I get an error: [ERROR] "[fd 1112]": Error reading header: Bad file descriptor. It doesn’t even wait for data to be written to ...
by alekc
Wed Nov 27, 2019 9:25 am
Forum: wimlib discussion
Topic: wimlib_free() return code
Replies: 2
Views: 16787

Re: wimlib_free() return code

oops, I made a mistake when translating the headers, thanks :)
by alekc
Tue Nov 26, 2019 2:02 pm
Forum: wimlib discussion
Topic: wimlib_free() return code
Replies: 2
Views: 16787

wimlib_free() return code

I am trying to create a volume image using the calls is this order:

wimlib_create_new_wim(WIMLIB_COMPRESSION_TYPE_LZX, wimFile)
wimlib_register_progress_function(wimFile, wim_progress, ....)
wimlib_add_image(wimFile, volumeName, .....) // volumeName -> \\?\Volume{<GUID>}\
wimlib_write(wimFile ...