mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r28788] Added extern C block to H5Epubgen.h (via bin/make_err).
Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1 serial only
This commit is contained in:
parent
f017eb6fc0
commit
064b2f6dd8
12
bin/make_err
12
bin/make_err
@ -175,6 +175,12 @@ sub create_public ($) {
|
||||
print_warning(*HEADER);
|
||||
print_startprotect(*HEADER, $file);
|
||||
|
||||
# Begin extern C block
|
||||
print HEADER "\n";
|
||||
print HEADER "#ifdef __cplusplus\n";
|
||||
print HEADER "extern \"C\" {\n";
|
||||
print HEADER "#endif\n";
|
||||
|
||||
# Iterate over all the major errors
|
||||
print HEADER "\n/*********************/\n";
|
||||
print HEADER "/* Major error codes */\n";
|
||||
@ -202,6 +208,12 @@ sub create_public ($) {
|
||||
}
|
||||
}
|
||||
|
||||
# End extern C block
|
||||
print HEADER "\n";
|
||||
print HEADER "#ifdef __cplusplus\n";
|
||||
print HEADER "}\n";
|
||||
print HEADER "#endif\n";
|
||||
|
||||
print_endprotect(*HEADER, $file);
|
||||
|
||||
# Close header file
|
||||
|
Loading…
x
Reference in New Issue
Block a user