
开发简单模版
tankaro
这个作者很懒,什么都没留下…
展开
-
linux中创建so文件和使用so文件简单模版
so模版:头文件showmessage.h#include void say(char *str);cpp文件showmessage.c#include "showmessage.h"void say(char *str){ printf("this is in so-file, but is from test_so app\n", str);}原创 2013-06-07 15:36:58 · 994 阅读 · 0 评论 -
博客声明
大多数博客文章都是参考网上的文件加上自己的稍微理解写上去的。所以不能算原创。除了现在这边文章。引用部分就不在一一声明了。原创 2013-06-07 15:41:17 · 555 阅读 · 0 评论 -
android4.0.3在hardware文件下添加一个可以编译为执行文件的方法
两个文件即可。当然这只是编译,想直接将文件放入到image中还是需要另外的设置的。#include #include #include #include #include #include #include #include #include #include #include #include #include #define LOG_原创 2013-06-21 17:51:06 · 1714 阅读 · 0 评论 -
Android4.2中复制so文件
LOCAL_PATH:= $(call my-dir)###################################### #COPY PayMent APK include $(CLEAR_VARS) LOCAL_MODULE := libH264BinderClient #输出PayMent.apk 文件的目录LOCAL_MODULE_PAT原创 2014-07-17 13:28:25 · 1066 阅读 · 0 评论 -
linux上使用open读取一个二进制文件
在实际项目中用到了二进制文件de原创 2014-08-04 16:47:18 · 13464 阅读 · 1 评论 -
Android4.2显示yuv数据
/* * Copyright (C) 2010 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.原创 2014-08-27 10:30:28 · 3258 阅读 · 0 评论