Tagged Questions
2
votes
2answers
1k views
Google Protocol Buffer repeated field C++
I have the below protocol buffer. Note that StockStatic is a repeated field.
message ServiceResponse
{
enum Type
{
REQUEST_FAILED = 1;
STOCK_STATIC_SNAPSHOT = 2;
}
...
0
votes
1answer
122 views
How to avoid repeated SendMessage
I have a problem: I use SendMessage from a procedure in a DLL to communicate with the main window; procedure is a hook procedure that allows main window to know when mouse right button is clicked in a ...