Name: Anonymous 2009-07-14 15:19
im trying to work my way through a python book as i am just starting to learn basic programming...and i am stuck, i am using Galileo (as the book recomended) as my programming environment and now it is trying to teach me how to make a debugger this is where i am...
BOOL WINAPI CreateProcessA(
LPCSTR lpApplicationName,
LPTSTR LpCommandLine
LPSECURITY_ATTRIBUTES LpProcessAttributes,
LPSECURITY ATTRIBUTES LpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpCurrentDirectory,
LPSTARTUPINFO lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
);
I am gettin an error message saying...
BOOL WINAPI CreateProcessA(
^
SyntaxError: invalid syntax
What does this mean???
p.s the book is GRAY HAT PYTHON
BOOL WINAPI CreateProcessA(
LPCSTR lpApplicationName,
LPTSTR LpCommandLine
LPSECURITY_ATTRIBUTES LpProcessAttributes,
LPSECURITY ATTRIBUTES LpThreadAttributes,
BOOL bInheritHandles,
DWORD dwCreationFlags,
LPVOID lpCurrentDirectory,
LPSTARTUPINFO lpStartupInfo,
LPPROCESS_INFORMATION lpProcessInformation
);
I am gettin an error message saying...
BOOL WINAPI CreateProcessA(
^
SyntaxError: invalid syntax
What does this mean???
p.s the book is GRAY HAT PYTHON