#ifdef AGREGAR_EXPORTS
#define AGREGAR_API __declspec(dllexport)
#else
#define AGREGAR_API __declspec(dllimport)
#endif
// This class is exported from the agregar.dll
class AGREGAR_API Cagregar {
public:
void Hola(void);
// TODO: add your methods here.
};
extern AGREGAR_API int nagregar;
AGREGAR_API int fnagregar(void);