fbxsdk/core/fbxmodule.h Source File

fbxmodule.h
Go to the documentation of this file.
1 /****************************************************************************************
2 
3  Copyright (C) 2015 Autodesk, Inc.
4  All rights reserved.
5 
6  Use of this software is subject to the terms of the Autodesk license agreement
7  provided at the time of installation or download, or which otherwise accompanies
8  this software in either electronic or hard copy form.
9 
10 ****************************************************************************************/
11 
13 #ifndef _FBXSDK_CORE_MODULE_H_
14 #define _FBXSDK_CORE_MODULE_H_
15 
16 #include <fbxsdk/fbxsdk_def.h>
17 
18 #ifndef FBXSDK_ENV_WINSTORE
19 
20 #include <fbxsdk/fbxsdk_nsbegin.h>
21 
22 typedef void* FbxModule;
23 
29 FBXSDK_DLL FbxModule FbxModuleLoad(const char* pFilePath);
30 
36 FBXSDK_DLL void* FbxModuleGetProc(FbxModule pModuleHandle, const char* pProcName);
37 
43 FBXSDK_DLL bool FbxModuleFree(FbxModule pModuleHandle);
44 
45 #include <fbxsdk/fbxsdk_nsend.h>
46 
47 #endif /* !FBXSDK_ENV_WINSTORE */
48 
49 #endif /* _FBXSDK_CORE_MODULE_H_ */
FBX SDK environment definition.
void * FbxModule
Definition: fbxmodule.h:22
FbxModule FbxModuleLoad(const char *pFilePath)
Loads the specified module into the address space of the calling process.
void * FbxModuleGetProc(FbxModule pModuleHandle, const char *pProcName)
Retrieves the address of an exported function or variable from the specified module.
#define FBXSDK_DLL
Definition: fbxarch.h:173
bool FbxModuleFree(FbxModule pModuleHandle)
Frees the loaded module and, if necessary, decrements its reference count.