摘要: 使用Google App Engine Helper for Django 原著: Matt Brown 译者: DaNmarner 原文链接: http://code.google.com/appengine/articles/appengine_helper_for_django.html 译文链接: http://danmarner.yo2.cn/appengine_helper_for_d... 阅读全文
posted @ 2008-12-01 19:14 CoderZh 阅读(1668) 评论(3) 推荐(0) 编辑
摘要: 1、_stdcall是Pascal程序的缺省调用方式,通常用于Win32 Api中,函数采用从右到左的压栈方式,自己在退出时清空堆栈。VC将函数编译后会在函数名前面加上下划线前缀,在函数名后加上"@"和参数的字节数。 int f(void *p) -->> _f@4(在外部汇编语言里可以用这个名字引用这个函数) 2、C调用约定(即用__cdecl关键字说明)(The C default calli... 阅读全文
posted @ 2008-12-01 16:56 CoderZh 阅读(11684) 评论(0) 推荐(1) 编辑