Chet icon indicating copy to clipboard operation
Chet copied to clipboard

C Header Translator for Delphi

Results 15 Chet issues
Sort by recently updated
recently updated
newest added

PSDL_RWops::(unnamed at C:\Dev\Utils\Chet\projects\SDL\includes\SDL_rwops.h:109:13) = ^SDL_RWops::(unnamed at C:\Dev\Utils\Chet\projects\SDL\includes\SDL_rwops.h:109:13); I'm getting a lot of these type of things now? Does not seem to handle anonymous unions any longer?

So, I have been working on adding a feature that can "clean up" the converted header that will compile. After working on this problem for a while, I discovered that,...

I'm using your excellent tool to convert the XMLSec library for Win64 use. I have downloaded the source from https://www.zlatkovic.com/pub/libxml/64bit/zlib-1.2.8-win32-x86_64.7z, unpacked it and am using Chet to process the libxml2...

What changes need to be made so that `PsfEvent` is created for a union such as: ```C typedef union { sfEventType type; ///< Type of the event sfSizeEvent size; ///<...

additionally added ability to select installed versions of winsdk. to automatically add paths to include files

Below you can find a sample Chet result with `CreateDynamicImport(0)` directive: Delphi can not compile it because of the lack of the `var` keyword before function declarations. ``` type MyEnum=...

Static (default) mode in Chet is more stable than dynamic. Example: In static mode Chet returns code with comments correctly moved from C header. In my case this comment contains...

If I have a struct such as this: ```C typedef struct unz_file_info_s { int version; /* version made by 2 bytes */ int version_needed; /* version needed to extract 2...

Hi, when I try to translate a project I got: error: unknown type name 'WORD' error: unknown type name 'BYTE' I have all dependency files installed (like Visual Studio). What...