C Board  

Go Back   C Board > General Programming Boards > C Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 09-03-2008, 05:04 PM   #16
Registered User
 
Join Date: Sep 2008
Posts: 15
hi it seems that i can resolve it on my one! "parse error at end of input
"
caldeira is offline   Reply With Quote
Old 09-03-2008, 05:08 PM   #17
Banned
 
master5001's Avatar
 
Join Date: Aug 2001
Location: Visalia, CA, USA
Posts: 3,699
Ummm... what about the comment thing? Did you fix that? Why not just get an IDE that halfway tries to help you spot indiscrepencies in code blocks and comments? VC++ Express can do that, and its free.
master5001 is offline   Reply With Quote
Old 09-03-2008, 05:09 PM   #18
Frequently Quite Prolix
 
dwks's Avatar
 
Join Date: Apr 2005
Location: Canada
Posts: 7,698
Well, posting your latest code and error message would certainly help us tell what you've managed to do . . .

. . . only, because it's so long, I suggest attaching it instead of putting it into code tags.

[edit] Or install Linux and get KDevelop. I used kate's CTRL-6 to find the missing bracket. (CTRL-6 jumps the cursor to the matching brace.) [/edit]
__________________
dwk

Seek and ye shall find. quaere et invenies.

"Simplicity does not precede complexity, but follows it." -- Alan Perlis
"Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
"The only real mistake is the one from which we learn nothing." -- John Powell


Other boards: DaniWeb, TPS
Unofficial Wiki FAQ: cpwiki.sf.net

My website: http://dwks.theprogrammingsite.com/
Projects: codeform, xuni, atlantis, nort, etc.
dwks is offline   Reply With Quote
Old 09-03-2008, 05:13 PM   #19
Banned
 
master5001's Avatar
 
Join Date: Aug 2001
Location: Visalia, CA, USA
Posts: 3,699
Quote:
Originally Posted by dwks View Post
Well, posting your latest code and error message would certainly help us tell what you've managed to do . . .

. . . only, because it's so long, I suggest attaching it instead of putting it into code tags.

[edit] Or install Linux and get KDevelop. I used kate's CTRL-6 to find the missing bracket. (CTRL-6 jumps the cursor to the matching brace.) [/edit]
Please! But if you must use Windows (or in my case, must have one dev machine dedicated to that OS family) MSVS is a decent enough IDE... The Express versions are all free.
master5001 is offline   Reply With Quote
Old 09-03-2008, 05:23 PM   #20
Frequently Quite Prolix
 
dwks's Avatar
 
Join Date: Apr 2005
Location: Canada
Posts: 7,698
Or just try compiling, say, at least every ten lines or so, as Salem suggested.

As I was saying, though: the last seven or so functions in that code are so similar that you ought to be able to combine them into one function.

Code:
    printf("\nQual o Nome do Utente:");
    fflush(stdin);
    fgets(nomeUtenteTemp, 20+1, stdin);
    if(nomeUtenteTemp[0] == '\r'  ||  nomeUtenteTemp[0] == '\n'){
fgets() won't give you any '\r's -- only getch() will [1]. Well, you also get '\r's if you're reading a file with DOS line endings from Linux, but I don't think you need to worry about that (it looks like you're expecting user input, not redirected files).

[1] getch() isn't the best idea, either. It's unportable and non-standard, and often doesn't play well with standard C input functions like fgets().

Also, an explanation for my fflush comment earlier: cpwiki.sf.net/fflush
__________________
dwk

Seek and ye shall find. quaere et invenies.

"Simplicity does not precede complexity, but follows it." -- Alan Perlis
"Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
"The only real mistake is the one from which we learn nothing." -- John Powell


Other boards: DaniWeb, TPS
Unofficial Wiki FAQ: cpwiki.sf.net

My website: http://dwks.theprogrammingsite.com/
Projects: codeform, xuni, atlantis, nort, etc.
dwks is offline   Reply With Quote
Old 09-03-2008, 05:27 PM   #21
Banned
 
master5001's Avatar
 
Join Date: Aug 2001
Location: Visalia, CA, USA
Posts: 3,699
I have to admit, there is nothing more satisfying than writing an entire program (thousands of lines of code) without compiling it until the very end, and having it both compile flawlessly and run without any snags.

Even for an advanced programmer that is a foolish way of doing things, however. Your IDE gives you no indication whatsoever as to where in the code that things broke?
master5001 is offline   Reply With Quote
Old 09-04-2008, 01:51 AM   #22
Mysterious C++ User
 
Elysia's Avatar
 
Join Date: Oct 2007
Posts: 14,787
The whole code is one big mess:

Error 1 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 137
Error 2 error C2197: 'int (__cdecl *)(void)' : too many arguments for call g:\w00t\visual studio 2008\projects\temp\temp3.cpp 166
Error 3 error C2562: 'ordenaNome' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 181
Error 4 error C2562: 'ordenaNome' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 183
Error 5 error C2562: 'ordenaNomeMedico' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 189
Error 6 error C2562: 'ordenaNomeMedico' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 191
Error 7 error C2562: 'ordenaMedicoEsp' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 197
Error 8 error C2562: 'ordenaMedicoEsp' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 199
Error 9 error C2562: 'ordenaUtenteNome' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 205
Error 10 error C2562: 'ordenaUtenteNome' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 207
Error 11 error C2562: 'ordenaUtenteData' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 213
Error 12 error C2562: 'ordenaUtenteData' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 215
Error 13 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 234
Error 14 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 248
Error 15 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 260
Error 16 error C2440: '=' : cannot convert from 'void *' to 'PESPECIALIDADES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 264
Error 17 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 270
Error 18 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 283
Error 19 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 292
Error 20 error C2440: '=' : cannot convert from 'void *' to 'PESPECIALIDADES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 296
Error 21 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 317
Error 22 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 331
Error 23 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 340
Error 24 error C2440: '=' : cannot convert from 'void *' to 'PESPECIALIDADES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 344
Error 25 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 364
Error 26 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 376
Error 27 error C2440: '=' : cannot convert from 'void *' to 'PESPECIALIDADES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 380
Error 28 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 385
Error 29 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 406
Error 30 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 415
Error 31 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 425
Error 32 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 437
Error 33 error C2440: '=' : cannot convert from 'void *' to 'PMEDICOS' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 441
Error 34 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 447
Error 35 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 496
Error 36 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 510
Error 37 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 523
Error 38 error C2440: '=' : cannot convert from 'void *' to 'PASSISTENCIAMEDICA' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 527
Error 39 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 533
Error 40 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 547
Error 41 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 556
Error 42 error C2440: '=' : cannot convert from 'void *' to 'PASSISTENCIAMEDICA' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 560
Error 43 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 580
Error 44 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 594
Error 45 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 603
Error 46 error C2440: '=' : cannot convert from 'void *' to 'PASSISTENCIAMEDICA' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 607
Error 47 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 628
Error 48 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 641
Error 49 error C2440: '=' : cannot convert from 'void *' to 'PASSISTENCIAMEDICA' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 645
Error 50 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 650
Error 51 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 690
Error 52 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 721
Error 53 error C2440: '=' : cannot convert from 'void *' to 'PUTENTES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 725
Error 54 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 731
Error 55 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 744
Error 56 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 753
Error 57 error C2440: '=' : cannot convert from 'void *' to 'PUTENTES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 757
Error 58 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 778
Error 59 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 792
Error 60 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 801
Error 61 error C2440: '=' : cannot convert from 'void *' to 'PUTENTES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 805
Error 62 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 825
Error 63 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 837
Error 64 error C2440: '=' : cannot convert from 'void *' to 'PUTENTES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 841
Error 65 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 846
Error 66 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 872
Error 67 error C2440: '=' : cannot convert from 'PESPECIALIDADES *' to 'PESPECIALIDADES' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 877
Error 68 error C2664: 'insereAcabeca' : cannot convert parameter 2 from 'PESPECIALIDADES' to 'PNO' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 879
Error 69 error C2440: '=' : cannot convert from 'PASSISTENCIAMEDICA *' to 'PASSISTENCIAMEDICA' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 883
Error 70 error C2664: 'insereAcabeca' : cannot convert parameter 2 from 'PASSISTENCIAMEDICA' to 'PNO' g:\w00t\visual studio 2008\projects\temp\temp3.cpp 885
Error 71 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 892
Error 72 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 917
Error 73 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 939
Error 74 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 962
Error 75 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 997
Error 76 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1015
Error 77 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1033
Error 78 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1052
Error 79 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1072
Error 80 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1089
Error 81 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1107
Error 82 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1124
Error 83 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1142
Error 84 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1161
Error 85 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1179
Error 86 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1195
Error 87 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1207
Error 88 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1224
Error 89 error C3861: 'getch': identifier not found g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1238
Error 90 error C2562: 'MenuOrdenar' : 'void' function returning a value g:\w00t\visual studio 2008\projects\temp\temp3.cpp 1242

You can start by getting rid of getch. It's non-standard, and it obviously doesn't exist in Microsoft's compiler. Use getchar() instead or nothing at all.

And the actual problem lies at line 692. This snippet:
Code:
        /* fgets(ptrTempUtente->tipoAssistencia, 40+1, stdin );
                    if(ptrTempUtente->tipoAssistencia[0] == '\r'  ||  ptrTempUtente->tipoAssistencia[0] == '\n')
                        printf("\nAtencao, deixou o campo vazio" );
                    }
        //fgets(tipoAssistenciaTemp, 30+1, stdin );
        //if(pUtentes->tipoAssistenciaTemp[0] == '\r'  ||  pUtentes->tipoAssistenciaTemp[0] == '\n'){
           // printf("\nAtencao, deixou o campo vazio" );
        //}

        ptrTempUtente = criarNO(pUtentes);
        insereAcabeca(&cabecaUtente,ptrTempUtente);
        listaFicheiroAlterado=TRUE;
        getch();*/
    }
}

/*  FUNCAO PARA PESQUISAR Utentes POR NOME */
You were missing the end comment market marked by red.
__________________
Using: Microsoft Windows™ 7 Professional (x64), Microsoft Visual Studio™ 2008 Team System
I dedicated my life to helping others. This is only a small sample of what they said:
"Thanks Elysia. You're a programming master! How the hell do you know every thing?"
Quoted... at least once.
Quote:
Originally Posted by cpjust
If C++ is 2 steps forward from C, then I'd say Java is 1 step forward and 2 steps back.

Last edited by Elysia; 09-04-2008 at 01:55 AM.
Elysia is offline   Reply With Quote
Old 09-04-2008, 10:25 AM   #23
and the hat of Jobseeking
 
Salem's Avatar
 
Join Date: Aug 2001
Location: The edge of the known universe
Posts: 21,710
Follow these steps

1. Put this on the first line
Code:
#if 0
Put this on the last line of the file
Code:
#endif
int main ( ) {
  return 0;
}
Make sure it compiles with no errors.

2. Move the #if 0 past the includes, so now it looks like this
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if 0 
Make sure it compiles with no errors.

3. Move it past the #defines, so it looks like this
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define TRUE            0
#define FALSE           1
#define LEN_FICHEIRO      256
#define FICHEIRO_DEFAULT  "dadosBin.dat"
#if 0 
Make sure it compiles with no errors.

4. Move is past ONE typedef, so
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define TRUE            0
#define FALSE           1
#define LEN_FICHEIRO      256
#define FICHEIRO_DEFAULT  "dadosBin.dat"

/* ESTRUTURAS  */

/* estrutura que define  o no */

typedef struct no {
    struct no *prox;
    struct no *ant;
    void *dados;
}NO;
typedef NO *PNO;
#if 0 
Make sure it compiles with no errors.

At each stage, you MAKE SURE IT COMPILES before moving the #if 0 past the next set of declarations / function definitions or whatever.

It's a quick way of hiding a lot of code from the compiler without having to delete it.

It also means you only have to deal with a few problems at a time, rather than the mass you have at the moment.

If you do get stuck, it means you can simply delete everything between #if 0 .. #endif before posting. Then we have a lot less to look at.
__________________
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.

Salem is offline   Reply With Quote
Old 09-04-2008, 01:25 PM   #24
Banned
 
master5001's Avatar
 
Join Date: Aug 2001
Location: Visalia, CA, USA
Posts: 3,699
Quote:
Originally Posted by Elysia View Post
The whole code is one big mess:

You were missing the end comment market marked by red.
The kicker is that he was already alerted to that error... And did not say whether or not it was even fixed. Though it may be a good idea to address every warning you are getting too. Not to mention any other errors.
master5001 is offline   Reply With Quote
Old 09-04-2008, 01:34 PM   #25
Registered User
 
Join Date: Sep 2008
Posts: 15
hi guys its me again, my code still doesn´t work!!! help...
caldeira is offline   Reply With Quote
Old 09-04-2008, 01:36 PM   #26
*
 
noops's Avatar
 
Join Date: Jun 2008
Posts: 108
Have you taken the suggested steps to narrow down the problem?
noops is offline   Reply With Quote
Old 09-04-2008, 01:41 PM   #27
Banned
 
master5001's Avatar
 
Join Date: Aug 2001
Location: Visalia, CA, USA
Posts: 3,699
Dude, can you fix the code, particularly by taking heed to Salem's suggestions then attach a copy of your newer code?
master5001 is offline   Reply With Quote
Old 09-04-2008, 02:18 PM   #28
Registered User
 
Join Date: Sep 2008
Posts: 15
yes you are wrigth i ´sorry to take your time, its working salem, master5001
caldeira is offline   Reply With Quote
Old 09-04-2008, 03:27 PM   #29
Registered User
 
Join Date: Sep 2008
Posts: 15
Code:
#if 0
/*int main()
{
    char escolha;
    do {
        system("cls");
		printf("\n   Menu Principal\n");
        printf("\n   1 - Menu Especialidades\n");
        printf("\n   2 - Menu Medicos\n");
        printf("\n   3 - Menu Assistencia\n");
        printf("\n   4 - Menu Utentes\n");
        printf("\n   5 - Menu Consultas\n");
        printf("\n   6 - Menu Pesquisa\n");
		printf("\n   7 - Menu Ordenar\n");
        printf("\n   8 - Ler Ficheiro\n");
        printf("\n   9 - Gravar Ficheiro\n");
        printf("\n   0 - Sair   do   Programa\n");
        printf("\n   Escolha a Opcao:");
        escolha=getchar();

        switch(escolha)
        {
        case '1':
            MenuEspecialidades();
            break;
        case '2':
			MenuMedicos();
			break;
        case '3':
            MenuAssistenciaMedica();
			break;
        case '4':
            MenuUtentes();
			break;
        case '5':
            MenuConsultas();
			break;
        case '6':
            MenuPesquisas();
            break;
	    case '7':
            MenuOrdenar();
            break;
        case '8':
            verificaFicheiro();
            break;
        case '9':
            gravaFicheiro(&cabecaEspecialidade, &cabecaMedico, &cabecaAssistenciamedica, &cabecaUtente, &cabecaAgendaConsultas);
            break;
        case '0':
            fim();
            break;
        default:
            getchar();
            break;
        }
    } while (escolha!='0');
getchar();
} */

#endif
int main () {
  return 0;
result:
E:\Programas\CodeBlocks\SourceALG\ProjectMainPGM.v 1\main.c: In function `main':
E:\Programas\CodeBlocks\SourceALG\ProjectMainPGM.v 1\main.c:1317: error: syntax error at end of input
Process terminated with status 1 (0 minutes, 0 seconds)
1 errors, 1 warnings

p.s. i don´t know what more to trie...
caldeira is offline   Reply With Quote
Old 09-04-2008, 03:35 PM   #30
Frequently Quite Prolix
 
dwks's Avatar
 
Join Date: Apr 2005
Location: Canada
Posts: 7,698
Code:
#endif
int main () {
  return 0;
I think you're missing a closing curly brace again. At the very end of the file. [edit] Err -- at the very end of the code you posted. [/edit]
__________________
dwk

Seek and ye shall find. quaere et invenies.

"Simplicity does not precede complexity, but follows it." -- Alan Perlis
"Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
"The only real mistake is the one from which we learn nothing." -- John Powell


Other boards: DaniWeb, TPS
Unofficial Wiki FAQ: cpwiki.sf.net

My website: http://dwks.theprogrammingsite.com/
Projects: codeform, xuni, atlantis, nort, etc.

Last edited by dwks; 09-04-2008 at 03:40 PM.
dwks is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Compiling sample DarkGDK Program Phyxashun Game Programming 6 01-27-2009 03:07 AM
Testing some code, lots of errors... Sparrowhawk C Programming 48 12-15-2008 04:09 AM
Game Pointer Trouble? Drahcir C Programming 8 02-04-2006 02:53 AM
ras.h errors Trent_Easton Windows Programming 8 07-15-2005 10:52 PM
Linking error DockyD C++ Programming 10 01-20-2003 05:27 AM


All times are GMT -6. The time now is 09:53 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22