Everything compiles and links, now for the unable to load dll errors...
(and 1050 warnings
)
])
#include <iostream.h>
#include <conio.h>
int main(int argc, char** argv)
{
int test;
test = sizeof(enum);
cout<<"sizeof(enum): "<<test;
getch();
return 0;
}
Comment