fbxsdk/core/fbxmodule.h File Reference
         
    
      
        
          | FbxModule FbxModuleLoad  | 
          ( | 
          const char *  | 
          pFilePath | ) | 
           | 
        
      
 
Loads the specified module into the address space of the calling process. 
- Parameters
 - 
  
    | pFilePath | The full file path name of the module to load.  | 
  
   
- Returns
 - The module handle if it successfully loaded, otherwise NULL. 
 
 
 
      
        
          | void* FbxModuleGetProc  | 
          ( | 
          FbxModule  | 
          pModuleHandle,  | 
        
        
           | 
           | 
          const char *  | 
          pProcName  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Retrieves the address of an exported function or variable from the specified module. 
- Parameters
 - 
  
    | pModuleHandle | A valid module handle.  | 
    | pProcName | The procedure name to search.  | 
  
   
- Returns
 - The procedure handle if valid, otherwise NULL. 
 
 
 
      
        
          | bool FbxModuleFree  | 
          ( | 
          FbxModule  | 
          pModuleHandle | ) | 
           | 
        
      
 
Frees the loaded module and, if necessary, decrements its reference count. 
- Parameters
 - 
  
    | pModuleHandle | A valid module handle.  | 
  
   
- Returns
 true on success, false otherwise. 
 
 
Go to the source code of this file.