Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

compile errors

Newbie Spellweaver
Joined
Apr 15, 2017
Messages
5
Reaction score
0
Hello!
when i compile SA.dsw project/workspace
i got these errors
View attachment Build.txt

i tried to uncomment these lines :-
Code:
[COLOR=#ff0000]//[/COLOR]#ifndef ULONG_PTR
[COLOR=#ff0000]//[/COLOR]#define ULONG_PTR ULONG*
[COLOR=#ff0000]//[/COLOR]#endif
in this file :-
Code:
\Johnson_Client\ClientShellDLL\Lib_Network\NJean\Network\[COLOR=#ff0000]Network.h[/COLOR]

then i tried to compile again
and got fewer errors than before, here is:-

View attachment Build_2.txt

any hints ? tips ? help ? :*:

thank you all, in advance .
-------
PS; i am using KillerStefan Client ,, also i installed VC++ 6 , and dx8.1 SDK .
 

Attachments

You must be registered for see attachments list
Last edited:
Moderator
Staff member
Moderator
Joined
Jan 13, 2013
Messages
1,186
Reaction score
360
I might be wrong here but the error keeps specifying these missing bits.

error C2146: syntax error : missing ';' before identifier 'm_lpdwOwnerKey'

error C2146: syntax error : missing ';' before identifier 'm_wParam'

error C2146: syntax error : missing ';' before identifier 'm_lpNetworkKey'

Missing >

I hope this helped.
 
Newbie Spellweaver
Joined
Apr 15, 2017
Messages
5
Reaction score
0
thanks for your reply ^^

i thought the errors because ";"
but its not .

What I did , first i uncommented these lines in Network.h file
as i said in first post :-
Code:
[COLOR=#ff0000]//[/COLOR]#ifndef ULONG_PTR
[COLOR=#ff0000]//[/COLOR]#define ULONG_PTR ULONG*
[COLOR=#ff0000]//[/COLOR]#endif
then i included Network.h , into these files
socket.h , peer.h , signalqueue.h .
then i tried to Build again , and got no errors :w00t:

---
any hints :blink:
 
Initiate Mage
Joined
May 6, 2020
Messages
2
Reaction score
0
I started mess with the files today and strumble with that one, for future reference all you need to do is replace all ULONG_PTR with unsigned long.. Good Luck :)
 
Back
Top