00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include "config.h"
00019
00020 #include <stdio.h>
00021 #include <string.h>
00022 #include <stdarg.h>
00023 #include <assert_pp.h>
00024 #include "factory_library.h"
00025
00026 int FACTORY_METHOD_SYMBOL(factory_library_op_t op, int tag, va_list args)
00027 {
00028 int retval = EXIT_FAILURE;
00029
00030 switch( op )
00031 {
00032 case FLO_QUERY:
00033 printf("FLO_QUERY\n");
00034 fflush(stdout);
00035 retval = EXIT_SUCCESS;
00036 break;
00037 case FLO_HEY:
00038 printf("FLO_HEY\n");
00039 fflush(stdout);
00040 retval = EXIT_SUCCESS;
00041 break;
00042 default:
00043 break;
00044 }
00045 return( retval );
00046 }