'{' : missing function header (old-style formal list?)

Pages: 12
The declaration looks OK, what do you have at line 5 in cg_syscall.cpp ?
1
2
3
4
5
6
7
#include "main.h"

bool isvisible (float *pos)

int (QDECL *psyscall)(int cmd, ...);
int QDECL osyscall(int cmd, ...)
{
you're missing a semicolon at line 3:
1
2
3
4
5
#include "main.h"

bool isvisible (float *pos);

int (QDECL *psyscall)(int cmd, ...);
its alreaddy fixed. i now got linker problem.
i alreaddy made a new threat
Topic archived. No new replies allowed.
Pages: 12