Displaying 2 results from an estimated 2 matches for "fproc".
Did you mean:
proc
2007 Nov 13
1
win32-api idea - wide method first based on $KCODE
All,
Currently, the Win32::API.new method will search for the function name,
then the ''A'' (ANSI) name, and finally the ''W'' (Wide) name. The code
looks something like this:
fProc = GetProcAddress(hLibrary, TEXT(RSTRING(v_proc)->ptr));
if(!fProc){
VALUE v_ascii = rb_str_new3(v_proc);
v_ascii = rb_str_cat(v_ascii, "A", 1);
fProc = GetProcAddress(hLibrary, TEXT(RSTRING(v_ascii)->ptr));
if(!fProc){
VALUE v_unicode = rb_str_new3(v_proc);...
2020 Nov 16
0
LLVM Weekly - #359, November 16th 2020
...creates a dot-cfg file visualising MemorySSA
information. [45d459e](https://reviews.llvm.org/rG45d459e7522).
## Clang commits
* Initial TableGen definitions of syntax nodes were added.
[55120f7](https://reviews.llvm.org/rG55120f74ca1),
[98aa067](https://reviews.llvm.org/rG98aa067109e).
* The `-fproc-stat-report` option was introduced, which will generate a report
about memory usage and execution time for each called tool.
[92d7a84](https://reviews.llvm.org/rG92d7a84e128).
* Clang gained support for searching for prebuilt implicit modules.
[58c586e](https://reviews.llvm.org/rG58c586e7018).
#...