View previous topic :: View next topic |
Author |
Message |
whtwht Master Cheater
Reputation: 0
Joined: 21 May 2006 Posts: 390
|
Posted: Mon Dec 10, 2007 8:41 pm Post subject: DBK32 compileing error |
|
|
[code
]TARGETNAME=Whatever32
TARGETPATH=obj
TARGETTYPE=DRIVER
SOURCES=DBKDrvr.c
DBKFunc.c
rootkit.c
jumper.c
processlist.c
memscan.c
threads.c
vmxhelper.c
newkernel.c
[/code]
That is my sources.ce
and this is the error that im being told
Code: |
BUILD: Examining c:\docume~1\admini~1\desktop\uce\cheate~1\dbkker~1 directory for files to compile.
skipping post pass 0 command
Compiling and Linking c:\docume~1\admini~1\desktop\uce\cheate~1\dbkker~1 *************
'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR='
.\sources(8) : fatal error U1035: syntax error : expected ':' or '=' separator
errors in directory c:\docume~1\admini~1\desktop\uce\cheate~1\dbkker~1
c:\docume~1\admini~1\desktop\uce\cheate~1\dbkker~1\sources(8) : error U1035: syntax error : expected ':' or '=' separator
Stop.
errors in directory c:\docume~1\admini~1\desktop\uce\cheate~1\dbkker~1
nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2
|
|
|
Back to top |
|
 |
IYukiI Grandmaster Cheater Supreme
Reputation: 0
Joined: 01 Aug 2006 Posts: 1140 Location: OC, CA
|
Posted: Tue Dec 11, 2007 12:20 am Post subject: |
|
|
error U1035: syntax error : expected ':' or '='
If you can learn to read, you can learn to correct mistakes. If you know how to correct mistakes, u r win. If you can't read, you're an illiterate. If you can't correct mistakes, u r brick.
_________________
You need help with something? I don't know if I can help but contact me on MSN and I'll be glad to help in any way I can. |
|
Back to top |
|
 |
whtwht Master Cheater
Reputation: 0
Joined: 21 May 2006 Posts: 390
|
Posted: Tue Dec 11, 2007 4:24 pm Post subject: |
|
|
wow u are dumb aren't you, dono why they would have u in these forums... i have proframming background in c++, java and asm, nothing in delphi or c, even though c and c++ is almost the same, so whts wrong genius boy, with my sources.ce, the : or = in line 8?
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25788 Location: The netherlands
|
Posted: Wed Dec 12, 2007 5:44 am Post subject: |
|
|
When splitting up a compile string into multiple lines, you have to use \ at the end
so, either change your sources.ce to:
Code: |
TARGETNAME=Whatever32
TARGETPATH=obj
TARGETTYPE=DRIVER
SOURCES=DBKDrvr.c \
DBKFunc.c \
rootkit.c \
jumper.c \
processlist.c \
memscan.c \
threads.c \
vmxhelper.c \
newkernel.c
|
or back to one line:
Code: |
TARGETNAME=Whatever32
TARGETPATH=obj
TARGETTYPE=DRIVER
SOURCES=DBKDrvr.c DBKFunc.c rootkit.c jumper.c processlist.c memscan.c threads.c vmxhelper.c newkernel.c |
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
|