summary refs log tree commit diff stats
path: root/plugins/tcl/tcl-xp.vcxproj
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2012-12-08 05:18:16 -0500
committerTingPing <tingping@tingping.se>2012-12-08 05:18:16 -0500
commitc6d955ade738815ec119ae76db32a3fcc1ac5d72 (patch)
tree4e7dea4133cda41282f370e7aec84fd2ffee98f5 /plugins/tcl/tcl-xp.vcxproj
parent8e4d9c1f61e02af6e1b9ebbe8c8f6eeaa7b8aac2 (diff)
fix playing sounds with sound_dir
Diffstat (limited to 'plugins/tcl/tcl-xp.vcxproj')
0 files changed, 0 insertions, 0 deletions
/* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
Rust hexchat-unsafe-plugin
==========================

`hexchat-unsafe-plugin` provides rusty API bindings for developing native
HexChat plugins.

To get started, implement `hexchat_plugin::Plugin` on a struct and use the
`hexchat_plugin!('a, impl Plugin<'a>)` macro in your `lib.rs`. Do not provide a
`main`, as it will not work. Make sure to use the `cdylib` crate-type, or it
will also not work.

Also note that plugins may be loaded multiple times. It's recommended to avoid
using global state (statics, thread locals) so as to not cause issues with it.

Examples
--------

For a production-grade plugin using this crate, take a look at
[TODO].

License
-------

```text
Hexchat Plugin API Bindings for Rust
Copyright (C) 2018, 2021, 2022 Soni L.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.
```