Skip to content

Commit

Permalink
Removing test export
Browse files Browse the repository at this point in the history
  • Loading branch information
RachelTucker committed Mar 29, 2018
1 parent 90ac617 commit 11bb14d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 37 deletions.
4 changes: 2 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ add_library(ds3 SHARED
ds3_response_header_utils.h ds3_response_header_utils.c
ds3_bool.h
ds3_library_exports.h
ds3_test_exports.h)
ds3_marshaling.h)

if (WIN32)
set(CMAKE_BUILD_TYPE Release)
Expand Down Expand Up @@ -90,7 +90,7 @@ else(WIN32)
"ds3_response_header_utils.h"
"ds3_bool.h"
"ds3_library_exports.h"
"ds3_test_exports.h"
"ds3_marshaling.h"
DESTINATION
"/usr/local/include")
install(TARGETS ds3 DESTINATION lib)
Expand Down
9 changes: 4 additions & 5 deletions src/ds3_marshaling.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#ifndef DS3_MARSHALING_H
#define DS3_MARSHALING_H

#include "ds3_test_exports.h"
#include <libxml/parser.h>

#ifdef __cplusplus
Expand All @@ -41,10 +40,10 @@ typedef struct {
size_t total_read;
}ds3_xml_send_buff;

TEST_API xmlDocPtr ds3_generate_xml_ids(ds3_ids_list* ids_list);
TEST_API xmlDocPtr ds3_generate_xml_delete_objects(ds3_delete_objects_response* keys_list);
TEST_API xmlDocPtr ds3_generate_xml_complete_mpu(const ds3_complete_multipart_upload_response* mpu_list);
TEST_API xmlDocPtr ds3_generate_xml_bulk_objects_list(const ds3_bulk_object_list_response* obj_list, object_list_type list_type);
xmlDocPtr ds3_generate_xml_ids(ds3_ids_list* ids_list);
xmlDocPtr ds3_generate_xml_delete_objects(ds3_delete_objects_response* keys_list);
xmlDocPtr ds3_generate_xml_complete_mpu(const ds3_complete_multipart_upload_response* mpu_list);
xmlDocPtr ds3_generate_xml_bulk_objects_list(const ds3_bulk_object_list_response* obj_list, object_list_type list_type);

#ifdef __cplusplus
}
Expand Down
30 changes: 0 additions & 30 deletions src/ds3_test_exports.h

This file was deleted.

0 comments on commit 11bb14d

Please sign in to comment.