blob: b6e1bab1757bd9e388dec838dae32e8da498f007 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "viewporter-client-protocol.h"
#include "viewporter-server-protocol.h"
int main() {
#if defined(VIEWPORTER_CLIENT_PROTOCOL_H) && \
defined(VIEWPORTER_SERVER_PROTOCOL_H)
return 0;
#else
return 1;
#endif
}
|