码迷,mamicode.com
首页 > 其他好文 > 详细

Theos tweak MSHookFunction

时间:2014-12-08 12:16:42      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   on   bs   cti   amp   tt   br   

#import "substrate.h"

static FILE * (*s_orig_fopen) ( const char * filename, const char * mode );
static FILE * my_fopen ( const char * filename, const char * mode ){
    return s_orig_fopen(filename, mode);
}

static void entry(void)  __attribute__ ((constructor));
static void entry(void) {
    MSHookFunction(fopen, my_fopen, &s_orig_fopen);
}

OR

#import "substrate.h"

static FILE * (*s_orig_fopen) ( const char * filename, const char * mode );
static FILE * my_fopen ( const char * filename, const char * mode ){
    return s_orig_fopen(filename, mode);
}

%ctor {
    MSHookFunction(fopen, my_fopen, &s_orig_fopen);
}

Theos tweak MSHookFunction

标签:io   ar   os   on   bs   cti   amp   tt   br   

原文地址:http://www.cnblogs.com/qq378829867/p/4150604.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!