We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This was the script used to generate this Wiki page:
" Metacello new baseline: 'FFICallBrowser'; repository: 'github://tinchodias/FFICallBrowser'; load. " analysis := FFICallAnalyzer new methodSelectionBlock: [ :aFFICall | (aFFICall functionName beginsWith: 'SDL_') and: [ (aFFICall functionName endsWith: '_dispose') not and: [ aFFICall method package name beginsWith: 'SDL3'] ] ]; run; newAnalysis. analysis sortByFunctionName. writeStream := '' writeStream. analysis ffiCalls do: [ :each | writeStream << '| `'. writeStream << each functionName. writeStream << '` | `#'. writeStream << each method selector. writeStream << '` |'; lf. ]. writeStream contents.