BGMain.exe - Entry Point Not Found
#1
Posted 03 January 2012 - 12:51 PM
Also the message reads: "The procedure entry point EncodePointer could bot be located in the Dynamic link library KERNEL32.dll
mm75
Tired of the same boring spawned creatures u face in BG? Try BGSpawn
#2
Posted 03 January 2012 - 01:17 PM
The common problem is Win XP with only Service Pack 1 installed.
10th
"I grab his deceased spirit and piledrive it back into his body, duplicating raise dead." - Psyren Oots board
#3
Posted 03 January 2012 - 02:51 PM
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
#4
Posted 03 January 2012 - 04:19 PM
You can view the PE import table with many tools.
I think the accepted solution is to roll your own Encode/Decode Pointer functions using asm or replace the MS_CRT with tinyCRT, etc
I stayed with MSVC 2008 cause it has only a minium amount of problems for creating an app that would run on Window ME
http://louis.steelby...8_vs_win40.html
#5
Posted 03 January 2012 - 05:49 PM
I can add the little hack for XP, but for Win2000 and earlier, will be troublesome.
Anyway, mm75, give this a shot: http://www.shsforums...ost__p__530734. What is your OS version?
Edited by Ascension64, 03 January 2012 - 05:54 PM.
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
#7
Posted 04 January 2012 - 12:43 AM
http://mulder.google...rLib/README.txt
http://code.google.c...ncodePointerLib
and this post about W2K: http://tedwvc.wordpr...n-windows-2000/
Edited by fearless, 04 January 2012 - 12:44 AM.
fearless
CM690 II Case, Corsair HX1000 PSU, Asus Maximus V Gene, Intel i5-3750K @ 4.2Ghz, Corsair 8GB DDR3, Asus DirectCU GTX-670, Samsung 256GB SSD, WD Caviar Black 2TB HDD x2
#10
Posted 04 January 2012 - 01:42 AM
It probably looks like I am going to have to get vs2008express and compile under 9.0 just for releases.
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
#11
Posted 04 January 2012 - 01:53 AM
Not much I can do about Win2K because there's a lot more CRT that is different, such as HeapSetInformation.
It probably looks like I am going to have to get vs2008express and compile under 9.0 just for releases.
Fair enough ... let's do everything from scratch

After 6 years i can update it i believe

mm75
Tired of the same boring spawned creatures u face in BG? Try BGSpawn
#13
Posted 04 January 2012 - 02:39 AM
http://stackoverflow...-2008s-c-runtim
I can create the masm compiled obj files to link to the various required functions - the encodepointer and decodepointer ones for example:
.model flat .data __imp__EncodePointer@4 dd dummy __imp__DecodePointer@4 dd dummy EXTERNDEF __imp__EncodePointer@4 : DWORD EXTERNDEF __imp__DecodePointer@4 : DWORD .code dummy proc mov eax, [esp+4] ret 4 dummy endp end
Looking at the post in the link above, if you then link with that obj file that should be ok. For the HeapSetInformation for W2K, im not sure about.
Edit: attached is a zip file containing EncodePointer.obj - hope that helps.
Attached Files
Edited by fearless, 04 January 2012 - 05:37 AM.
fearless
CM690 II Case, Corsair HX1000 PSU, Asus Maximus V Gene, Intel i5-3750K @ 4.2Ghz, Corsair 8GB DDR3, Asus DirectCU GTX-670, Samsung 256GB SSD, WD Caviar Black 2TB HDD x2
#14
Posted 04 January 2012 - 02:18 PM
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
#15
Posted 04 January 2012 - 05:33 PM
http://www.shsforums...post__p__530864
Compiled under 9.0 CRT. I only had to fix up 4 lines of code, which was good.

--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
#17
Posted 09 January 2012 - 06:12 PM
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
#19
Posted 21 January 2012 - 02:17 PM
--------------
Retired Modder
Note: I do not respond to profile comments/personal messages in regards to troubleshooting my modifications. Please post on the public forums instead.
Baldur's Gate Trilogy-WeiDU and Mods
Throne of Bhaal Extender (TobEx)
Contributions: (NWN2) A Deathstalker (voice acting) - (IWD2) IWD2 NPC Project (soundset editing) - (Misc) SHS PC Soundsets (voice acting)
Legacy: (BG/Tutu/BGT) Beregost Crash Fixer 1.9 (18 Jul 10) - (BG2) Enable conversations with charmed/dominated creatures (18 Jul 10) - (BG2) Experience Corrections (18 Jul 10) - (Misc) Platform Conversion Utility RC2 (13 Feb 10)
#20
Posted 26 January 2012 - 09:42 AM
Bumpety bump bump. If I don't know the status of whether compiling under CRT 9.0 is actually helpful to Win2K and un-SP'ed Win XP users, then I will revert to compiling under CRT 10.0.
lol

Still have to install a W2k again (i had to install Xp to have the mod working, and currently i'm using that) ... hopefully this week-end so that u know if it works or not

Tx,
mm75
Tired of the same boring spawned creatures u face in BG? Try BGSpawn