klibrary.h File Reference


Detailed Description

Definition in file klibrary.h.

#include <fbxfilesdk/fbxfilesdk_def.h>
#include <fbxfilesdk/fbxfilesdk_nsbegin.h>
#include <fbxfilesdk/fbxfilesdk_nsend.h>

Include dependency graph for klibrary.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.


Typedefs

typedef void *  kLibHandle
typedef void *  kLibProc

Functions

Library management functions
KFBX_DLL kLibHandle  KLibraryOpen (const char *pLibFilePath)
  Opens a library.
KFBX_DLL kLibProc  KLibraryGetProc (kLibHandle pLibHandle, const char *pProcName)
  Searches for the specified proc.
KFBX_DLL bool  KLibraryClose (kLibHandle pLibHandle)
  Closes an open library.

Typedef Documentation

typedef void* kLibHandle

Definition at line 45 of file klibrary.h.

typedef void* kLibProc

Definition at line 46 of file klibrary.h.


Function Documentation

KFBX_DLL bool KLibraryClose ( kLibHandle  pLibHandle  ) 

Closes an open library.

Parameters:
pLibHandle 
Returns:
true on success, false otherwise.

KFBX_DLL kLibProc KLibraryGetProc ( kLibHandle  pLibHandle,
const char *  pProcName  
)

Searches for the specified proc.

Parameters:
pLibHandle 
pProcName 
Returns:
The found proc.

KFBX_DLL kLibHandle KLibraryOpen ( const char *  pLibFilePath  ) 

Opens a library.

Parameters:
pLibFilePath 
Returns:
The instance handle if its successfully loaded.