Theodoros Chatzigiannakis

Results 5 issues of Theodoros Chatzigiannakis

I regularly use a Greek keyboard layout. In certain applications (like Thunderbird and VS Code), after typing a couple of words, I eventually lose the ability to type accent symbols....

bug
keyboard hook

As per the MSDN documentation, any delegate that's passed to unmanaged code as a function pointer needs to be explicitly kept alive in managed code, since the GC doesn't track...

Most of the method signatures look something like this (matching the C++ API names verbatim): ``` public Instruction CreateArrayMalloc(Type @Ty, Value @Val, string @Name) ``` They could be changed to...

enhancement

The `LLVMSharp` namespace is starting to get too crowded, which is made worse by the fact that there are 2 types for each thing (`LLVMValueRef`, `Value`, etc). Especially the class...

enhancement

Consider, as an example, the function [`LLVMCreateJITCompilerForModule`](http://llvm.org/docs/doxygen/html/ExecutionEngineBindings_8cpp_source.html#l00132). LLVM C API signature: ``` LLVMBool LLVMCreateJITCompilerForModule(LLVMExecutionEngineRef *OutJIT, LLVMModuleRef M, unsigned OptLevel, char **OutError) ``` LLVMSharp C API signature: ``` LLVMBool CreateMCJITCompilerForModule(out LLVMExecutionEngineRef...