Author: janderwald Date: Fri Feb 2 01:36:04 2007 New Revision: 25674
URL: http://svn.reactos.org/svn/reactos?rev=25674&view=rev Log: - Fix function pointer definition
Modified: trunk/reactos/regtests/shared/regtests.h
Modified: trunk/reactos/regtests/shared/regtests.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/regtests/shared/regtests.h?... ============================================================================== --- trunk/reactos/regtests/shared/regtests.h (original) +++ trunk/reactos/regtests/shared/regtests.h Fri Feb 2 01:36:04 2007 @@ -164,7 +164,7 @@ * OutputRoutine - Output routine. * TestName - If NULL all tests are run. If non-NULL specifies the test to be run */ -typedef void STDCALL (*TestDriverMain)(TestOutputRoutine OutputRoutine, char *TestName); +typedef void (STDCALL *TestDriverMain)(TestOutputRoutine OutputRoutine, char *TestName);
typedef struct __TEST { @@ -207,7 +207,7 @@ _LPTHREAD_START_ROUTINE lpStartAddress, LPVOID lpParameter, DWORD dwCreationFlags, LPDWORD lpThreadId);
-WINBOOL STDCALL +BOOL STDCALL _TerminateThread(HANDLE hThread, DWORD dwExitCode);
DWORD STDCALL