-
From what I can tell grepping through the WiX 3.0 source, the CommitCAScriptCleanup custom action function in src/ca/wixca/dll/cacleanup.cpp is not referenced in any XML anywhere. In the WiX 2 tree, it is referenced in src/ca/wixca/setup/wixca.wxs.
It seems to me that that fragment should be added to src/ext/UtilExtension/wixlib/UtilExtension.wxs in 3.0 and 3.5. Also the CustomActionRef in...
2009-10-02 06:58:53 UTC in Windows Installer XML (WiX) toolset
-
In order to build a WiX compiler extension, I needed to check out the source from CVS (since the source package is missing files needed to build), convince it to build at least a little (which was quite an ordeal for me, being my first attempt to deal with building .NET stuff), and extract the following files:
WixBuild.dll
XsdGen.exe
FlattenXml.exe
I also needed to extract chunks of...
2009-10-01 06:13:53 UTC in Windows Installer XML (WiX) toolset
-
The registry values HKEY_CLASSES_ROOT\AppID\{GUID}\DllSurrogate should be set to an empty string to use the system surrogate. According to the MSDN docs for the AppId table (http://msdn.microsoft.com/en-us/library/aa367566(VS.85).aspx), "If this column is present it will typically be an empty string". But, light gives an error if the DllSurrogate attribute is an empty string. I am working...
2009-10-01 05:56:43 UTC in Windows Installer XML (WiX) toolset
-
w32api is missing winhttp.h, and the import library for winhttp.dll. This library exists on Windows 2000 SP3, XP SP1 and above.
The MSDN documentation for WinHTTP is available at http://msdn.microsoft.com/en-us/library/aa384252(VS.85).aspx
I have w32api version 3.13, but I have verified the lack of the header and def file in the cvs linked from cygwin.com.
2009-08-01 00:19:34 UTC in MinGW - Minimalist GNU for Windows
-
tivodecode does not do any format conversion, it simply removes the additional encoding and headers added by the TiVo to the raw MPEG stream. You may want to look into a transcoding tool, such as ffmpeg.
2008-01-10 06:34:28 UTC in TiVo File Decoder
-
BTW, you should be able to attach additional patches to this same entry in the tracker, rather than making a whole new entry for a new rev of the patch...
2007-12-18 06:09:49 UTC in TiVo File Decoder
-
BTW, you should be able to attach additional patches to this same entry in the tracker, rather than making a whole new entry for a new rev of the patch...
2007-12-17 06:31:13 UTC in TiVo File Decoder
-
This patch is being superceded by #1851705 (tdmake2).
2007-12-17 06:29:58 UTC in TiVo File Decoder
-
That's actually more complex than what I was thinking. I figured something like:
int write_tivo_header(char * mak, tivo_stream_header* hdr, int flags, tivo_stream_chunk** chunk_array, void * fh, write_func_t write_handler);
The write_func_t typedef is in tivodecoder.h
The caller would set the chunk_count in the hdr struct, and optionally provide a flag to say that you want the function...
2007-12-17 06:28:00 UTC in TiVo File Decoder
-
shouldn't you do this to stdout as well?.
2007-12-17 06:00:20 UTC in TiVo File Decoder