Fix enum resource_error_e to be exported
The cpu-boosting.h has described its return value as a type of enum
resource_error_e, but the header hasn't included the actual definition.
Rather, the definition was at the common.h that was a header not being
exported. This caused build error where the only <cpu-boosting.h> was
included as a header for cpu boosting. To fix it, move the definition to
cpu-boosting-type.h.
/home/abuild/rpmbuild/BUILD/dbus-tools-0.1/stress-test/src/test-main.c:127:28:
error: 'RESOURCE_ERROR_NONE' undeclared (first use in this function);
did you mean 'G_IO_ERROR_NONE'?
127 | if (ret != RESOURCE_ERROR_NONE) {
| ^~~~~~~~~~~~~~~~~~~
| G_IO_ERROR_NONE
Change-Id: Ibcc59281a28e03cf1a16c8f3a4f466ebb16f465a
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>