Missed LIBPROTOC_EXPORT for GRPC added
This commit is contained in:
parent
851cb81ddd
commit
b790da5a0b
4 changed files with 10 additions and 8 deletions
|
@ -157,7 +157,7 @@ typedef GeneratorContext OutputDirectory;
|
|||
// "foo=bar,baz,qux=corge"
|
||||
// parses to the pairs:
|
||||
// ("foo", "bar"), ("baz", ""), ("qux", "corge")
|
||||
extern void ParseGeneratorParameter(const string&,
|
||||
extern void LIBPROTOC_EXPORT ParseGeneratorParameter(const string&,
|
||||
std::vector<std::pair<string, string> >*);
|
||||
|
||||
} // namespace compiler
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
#include <vector>
|
||||
|
||||
#include <google/protobuf/compiler/csharp/csharp_helpers.h>
|
||||
#include <google/protobuf/compiler/csharp/csharp_names.h>
|
||||
#include <google/protobuf/descriptor.pb.h>
|
||||
#include <google/protobuf/io/printer.h>
|
||||
#include <google/protobuf/wire_format.h>
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
#define GOOGLE_PROTOBUF_COMPILER_CSHARP_NAMES_H__
|
||||
|
||||
#include <string>
|
||||
#include <google/protobuf/stubs/port.h>
|
||||
|
||||
namespace google {
|
||||
namespace protobuf {
|
||||
|
@ -56,14 +57,14 @@ namespace csharp {
|
|||
//
|
||||
// Returns:
|
||||
// The namespace to use for given file descriptor.
|
||||
string GetFileNamespace(const FileDescriptor* descriptor);
|
||||
string LIBPROTOC_EXPORT GetFileNamespace(const FileDescriptor* descriptor);
|
||||
|
||||
// Requires:
|
||||
// descriptor != NULL
|
||||
//
|
||||
// Returns:
|
||||
// The fully-qualified C# class name.
|
||||
string GetClassName(const Descriptor* descriptor);
|
||||
string LIBPROTOC_EXPORT GetClassName(const Descriptor* descriptor);
|
||||
|
||||
// Requires:
|
||||
// descriptor != NULL
|
||||
|
@ -72,7 +73,7 @@ string GetClassName(const Descriptor* descriptor);
|
|||
// The fully-qualified name of the C# class that provides
|
||||
// access to the file descriptor. Proto compiler generates
|
||||
// such class for each .proto file processed.
|
||||
string GetReflectionClassName(const FileDescriptor* descriptor);
|
||||
string LIBPROTOC_EXPORT GetReflectionClassName(const FileDescriptor* descriptor);
|
||||
|
||||
// Generates output file name for given file descriptor. If generate_directories
|
||||
// is true, the output file will be put under directory corresponding to file's
|
||||
|
|
|
@ -87,8 +87,8 @@ string FileClassName(const FileDescriptor* file);
|
|||
|
||||
// These return the fully-qualified class name corresponding to the given
|
||||
// descriptor.
|
||||
string ClassName(const Descriptor* descriptor);
|
||||
string ClassName(const Descriptor* descriptor, string* out_suffix_added);
|
||||
string LIBPROTOC_EXPORT ClassName(const Descriptor* descriptor);
|
||||
string LIBPROTOC_EXPORT ClassName(const Descriptor* descriptor, string* out_suffix_added);
|
||||
string EnumName(const EnumDescriptor* descriptor);
|
||||
|
||||
// Returns the fully-qualified name of the enum value corresponding to the
|
||||
|
@ -189,13 +189,13 @@ string BuildCommentsString(const SourceLocation& location,
|
|||
|
||||
// The name the commonly used by the library when built as a framework.
|
||||
// This lines up to the name used in the CocoaPod.
|
||||
extern const char* const ProtobufLibraryFrameworkName;
|
||||
extern LIBPROTOC_EXPORT const char* const ProtobufLibraryFrameworkName;
|
||||
// Returns the CPP symbol name to use as the gate for framework style imports
|
||||
// for the given framework name to use.
|
||||
string ProtobufFrameworkImportSymbol(const string& framework_name);
|
||||
|
||||
// Checks if the file is one of the proto's bundled with the library.
|
||||
bool IsProtobufLibraryBundledProtoFile(const FileDescriptor* file);
|
||||
bool LIBPROTOC_EXPORT IsProtobufLibraryBundledProtoFile(const FileDescriptor* file);
|
||||
|
||||
// Checks the prefix for the given files and outputs any warnings as needed. If
|
||||
// there are flat out errors, then out_error is filled in with the first error
|
||||
|
|
Loading…
Add table
Reference in a new issue