diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-13 19:37:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-13 19:39:33 +0300 |
commit | 8a7279daea883f86c2a500c368d252394faeea5b (patch) | |
tree | 02ca51df41ebe0c0acb3de0cf985f8407fcd68b4 /src/utils/process.h | |
parent | 909054f9606fa2c1c9825e3cf2e025df2e3710a1 (diff) | |
download | plus-8a7279daea883f86c2a500c368d252394faeea5b.tar.gz plus-8a7279daea883f86c2a500c368d252394faeea5b.tar.bz2 plus-8a7279daea883f86c2a500c368d252394faeea5b.tar.xz plus-8a7279daea883f86c2a500c368d252394faeea5b.zip |
Move nacl messages related functions into separate file.
Diffstat (limited to 'src/utils/process.h')
-rw-r--r-- | src/utils/process.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/utils/process.h b/src/utils/process.h index 44c1d2286..5ceddd032 100644 --- a/src/utils/process.h +++ b/src/utils/process.h @@ -34,16 +34,4 @@ bool openBrowser(std::string url); void setPriority(const bool big); -#ifdef __native_client__ - -typedef struct _NaclMessageHandle NaclMessageHandle; - -void naclPostMessage(const std::string &type, const std::string &message); - -NaclMessageHandle *naclRegisterMessageHandler(const std::string &type); -void naclUnregisterMessageHandler(NaclMessageHandle *handle); -std::string naclWaitForMessage(NaclMessageHandle *handle); - -#endif - #endif // UTILS_PROCESS_H |