blob: 1147e3ddfee5d25392fb84d480bd87d265a8d5cd [file] [log] [blame]
/*
* (c) Copyright IBM Corp., 2000, 2001
* All Rights Reserved.
*/
/**
* library.h
*
* This file contains helpers to open, close and lookup
* symbol addresses in shared librares.
*
*/
#ifndef INC_library_H
#define INC_library_H
unsigned int OpenLibrary(char *name);
unsigned int LibraryLookupName(unsigned int handle, char *name);
void CloseLibrary(unsigned int handle);
#endif /* INC_library_H */