Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2035235
  • 博文数量: 414
  • 博客积分: 10312
  • 博客等级: 上将
  • 技术积分: 4921
  • 用 户 组: 普通用户
  • 注册时间: 2007-10-31 01:49
文章分类

全部博文(414)

文章存档

2011年(1)

2010年(29)

2009年(82)

2008年(301)

2007年(1)

分类: C/C++

2009-02-06 18:29:25

NAME

dlfcn.h - dynamic linking

SYNOPSIS



#include 

DESCRIPTION

The header defines at least the following macros for use in the construction of a mode argument:
RTLD_LAZY
Relocations are performed at an implementation-dependent time.
RTLD_NOW
Relocations are performed when the object is loaded.
RTLD_GLOBAL
All symbols are available for relocation processing of other modules.
RTLD_LOCAL
All symbols are not made available for relocation processing by other modules.

The header declares the following functions which may also be defined as macros. Function prototypes must be provided for use with an ISO C compiler.


void  *(const char *, int);
void  *(void *, const char *);
int    (void *);
char  *(void);

APPLICATION USAGE

None.

FUTURE DIRECTIONS

None.

SEE ALSO

, , , .
阅读(1757) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~