COM in plain C

7-05 737 views

https://www.codeproject.com/Articles/13601/COM-in-plain-C
阅读全文 0

A Brief Intro to Input Method Framework, Linux IME, and XIM

6-01 721 views

https://tedyin.com/posts/a-brief-intro-to-linux-input-method-framework/ There are chances one need an input method editor (IME). For CJK users, su...
阅读全文 0

使用Visual studio查看exe或DLL文件的依赖项

5-07 737 views

事先准备:只要 Visual Studio 任何版本即可。 点击开始 -> 程序 -> Visual Studio对应的版本,打开Visual Studio Tools -> 选择 命令提示 进入命...
阅读全文 0

macos 暗黑3按键精灵

10-10 736 views

// gcc -Wall -o globalkeypress globalkeypress.c -framework ApplicationServices && ./globalkeypress include include </pthread.h> vo...
阅读全文 0

pthread 线程通信

5-21 1,063 views

pthread thread 1 pthread_mutex_lock(&android_app->mutex); while (!android_app->running) { pthread_cond_wait(&android...
阅读全文 0

cairo

5-03 1,685 views

Cairo https://www.cairographics.org/releases/ https://github.com/Homebrew/homebrew-core/blob/master/Formula/cairo.rb build ./autogen.sh *** No au...
阅读全文 0

ctypes.h

12-22 1,620 views

http://www.runoob.com/cprogramming/c-data-types.html http://www.runoob.com/go/go-data-types.html https://gist.github.com/zchee/b9c99695463d8902cd3...
阅读全文 0

pthread

6-11 2,276 views

https://www.cs.cmu.edu/afs/cs/academic/class/15492-f07/www/pthreads.html
阅读全文 10

Linux pipe通信 用法

5-06 1,089 views

#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/types.h> int main(void...
阅读全文 1

VS界面程序显示标准输出

6-26 836 views

在VS里边加参数 editbin /SUBSYSTEM:CONSOLE $(OutDir)/$(TargetName).exe 使用msys2 gdb运行 gdb target.exe r
阅读全文 0