klibrary.h File Reference

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

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.

Detailed Description

Definition in file klibrary.h.


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 kLibHandle KLibraryOpen ( const char *  pLibFilePath )

Opens a library.

Parameters:
pLibFilePath
Returns:
The instance handle if its successfully loaded.
KFBX_DLL kLibProc KLibraryGetProc ( kLibHandle  pLibHandle,
const char *  pProcName 
)

Searches for the specified proc.

Parameters:
pLibHandle
pProcName
Returns:
The found proc.
KFBX_DLL bool KLibraryClose ( kLibHandle  pLibHandle )

Closes an open library.

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