7-05 737 views
阅读全文 0
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, supporting unicode and wide characters from Chinese, Japanese and Korean is not enough, since it only ...
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...
事先准备:只要 Visual Studio 任何版本即可。
点击开始 -> 程序 -> Visual Studio对应的版本,打开Visual Studio Tools -> 选择 命令提示
进入命令行窗口,dumpbin /dependents “exe或dll的路径” 即可查询该exe的依赖项dll。
https://blog.csdn.net/...
5-07 737 views
事先准备:只要 Visual Studio 任何版本即可。
点击开始 -> 程序 -> Visual Studio对应的版本,打开Visual Studio Tools -> 选择 命令提示
进入命...
// gcc -Wall -o globalkeypress globalkeypress.c -framework ApplicationServices && ./globalkeypress
include
include
</pthread.h>
void delayCGEventPost(CGEventTapLocation tap, CGEventRef event){
CGEventPost(tap, event);
usleep(15000...
10-10 736 views
// gcc -Wall -o globalkeypress globalkeypress.c -framework ApplicationServices && ./globalkeypress
include
include
</pthread.h>
vo...
pthread
thread 1
pthread_mutex_lock(&android_app->mutex);
while (!android_app->running) {
pthread_cond_wait(&android_app->cond, &android_app->mutex);
}
pthread_mutex_unlock(&android_app->mute...
5-21 1,063 views
pthread
thread 1
pthread_mutex_lock(&android_app->mutex);
while (!android_app->running) {
pthread_cond_wait(&android...
Cairo
https://www.cairographics.org/releases/
https://github.com/Homebrew/homebrew-core/blob/master/Formula/cairo.rb
build
./autogen.sh
*** No autoreconf found, please install it ***
brew install autoconf
sh: aclocal: command not found
brew inst...
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...
http://www.runoob.com/cprogramming/c-data-types.html
http://www.runoob.com/go/go-data-types.html
https://gist.github.com/zchee/b9c99695463d8902cd33
https://www.cnblogs.com/majianguo/p/7650059.html
https://blog.nuxui.com/archives/561.html
http://w...
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...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
int main(void)
{
int result = -1;
int fd[2];
int nbytes;
pid_t pid;
char hello[] = "Hello Wor...
5-06 1,089 views
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
int main(void...