win_notify v0.0.3 WinNotify

Summary

Macros

Defines a notification icon process

Macros

notify_icon(text, icon)

Defines a notification icon process.

Example

defmodule Foo do
  import WinNotify

  notify_icon "Foo", "/path/to/icon.ico"
end

iex> Foo.start_link
iex> Foo.info("Info Event", "From Elixir!")
iex> :ok

Defined Functions

The following functions will be defined in the module the macro is invoked in:

  1. info(title, text)
  2. warning(title, text)
  3. error(title, text)