You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 string:
/**
The outer loop to be set for the face. If the
function succeeds, this loop will be deallocated.
*/
After using CreateDynamicImport(0) Chet generates the following method, which is a bug: succeeds := GetProcAddress(aDLLHandle, 'succeeds');
The text was updated successfully, but these errors were encountered:
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 string:
After using
CreateDynamicImport(0)
Chet generates the following method, which is a bug:succeeds := GetProcAddress(aDLLHandle, 'succeeds');
The text was updated successfully, but these errors were encountered: