Skip to content

Instantly share code, notes, and snippets.

@badboy
Created March 12, 2018 19:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save badboy/4dfec39dc6b575cf91481cf8d4dc37fb to your computer and use it in GitHub Desktop.
Save badboy/4dfec39dc6b575cf91481cf8d4dc37fb to your computer and use it in GitHub Desktop.
namespace mozilla {
async protocol PDogeIpc
{
child:
async Init(nsCString name);
async Shutdown();
parent:
async Ready();
both:
async Message(nsCString msg);
};
} // namespace mozilla
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment