which included commits to RCS files with non-trunk default branches. git-svn-id: svn://10.65.10.50/trunk@1681 c028cbd2-c16b-5b4b-a496-9718f37d4682
19 lines
315 B
C
Executable File
19 lines
315 B
C
Executable File
#ifndef __VE0_H
|
|
#define __VE0_H
|
|
|
|
#ifdef MAIN
|
|
#define extern
|
|
#endif
|
|
|
|
int ve0100(int argc, char** argv); // Motore di gestione documenti
|
|
int ve0200(int argc, char** argv); // Configurazione vendite
|
|
int ve0300(int argc, char** argv); // Generatore di maschere
|
|
|
|
|
|
#ifdef MAIN
|
|
#undef extern
|
|
#endif
|
|
|
|
#endif // __VE0_H
|
|
|