Hi all,
It's my first time being in this forum and I found a lot of helpful people here.
I am a beginner of Pro/E and I want to develop a plugin for Wilfire 3.0.
I tried to setup a visual studio. NET project according to the tutorial I read from another thread from http://www.frotime.com/Tutorials/Tutorials_Free_Download.asp x?ProductID=204
I setup the project and try to compile my sample code and error pops up.
NewProE error LNK2019: unresolved external symbol _GetModuleFileNameExW@16 referenced in function _get_module_path_by_address
NewProE error LNK2019: unresolved external symbol _GetModuleInformation@16 referenced in function _get_module_path_by_address
NewProE error LNK2019: unresolved external symbol _EnumProcessModules@16 referenced in function _get_module_path_by_address
Here is my testing code
#include "ProToolkit.h"
#include "ProUtil.h"
static ProName msgfil;
int user_initialize()
{
int menu_id, UsrModAngle();
ProPath PATH;
ProFileOpen("", "*.txt","","","","",PATH);
return(0); }
void user_terminate()
{
}
I didn't try anything fancy but just one line of Pro/E toolkit code and it fail. Note that I can have the code compiled if I delete the line of ProPath and ProFileOpen....
Please help me on this, I am getting very frustrated with this project....
, thanks
, Grant
It's my first time being in this forum and I found a lot of helpful people here.
I am a beginner of Pro/E and I want to develop a plugin for Wilfire 3.0.
I tried to setup a visual studio. NET project according to the tutorial I read from another thread from http://www.frotime.com/Tutorials/Tutorials_Free_Download.asp x?ProductID=204
I setup the project and try to compile my sample code and error pops up.
NewProE error LNK2019: unresolved external symbol _GetModuleFileNameExW@16 referenced in function _get_module_path_by_address
NewProE error LNK2019: unresolved external symbol _GetModuleInformation@16 referenced in function _get_module_path_by_address
NewProE error LNK2019: unresolved external symbol _EnumProcessModules@16 referenced in function _get_module_path_by_address
Here is my testing code
#include "ProToolkit.h"
#include "ProUtil.h"
static ProName msgfil;
int user_initialize()
{
int menu_id, UsrModAngle();
ProPath PATH;
ProFileOpen("", "*.txt","","","","",PATH);
return(0); }
void user_terminate()
{
}
I didn't try anything fancy but just one line of Pro/E toolkit code and it fail. Note that I can have the code compiled if I delete the line of ProPath and ProFileOpen....
Please help me on this, I am getting very frustrated with this project....
, thanks
, Grant