3 个不稳定版本

使用旧的 Rust 2015

0.6.0 2017年3月7日
0.5.1 2017年3月6日
0.5.0 2017年3月5日

#9 in #cheat

APL-1.0 许可证

20MB
269K SLoC

Pascal 175K SLoC // 0.1% comments • Rust 包仓库 C 61K SLoC // 0.1% comments • Rust 包仓库 Visual Studio Project 10K SLoC • Rust 包仓库 C++ 8K SLoC // 0.1% comments • Rust 包仓库 Lua 7K SLoC // 0.3% comments • Rust 包仓库 Assembly 3.5K SLoC // 0.1% comments • Rust 包仓库 ReScript 1K SLoC // 0.0% comments • Rust 包仓库 CUDA 877 SLoC // 0.2% comments • Rust 包仓库 Rust 430 SLoC // 0.0% comments • Rust 包仓库 Visual Studio Solution 414 SLoC • Rust 包仓库 Puppet 380 SLoC • Rust 包仓库 Forge Config 198 SLoC • Rust 包仓库 Batch 194 SLoC // 0.0% comments • Rust 包仓库 Bitbake 64 SLoC // 0.1% comments • Rust 包仓库 VB6 8 SLoC • Rust 包仓库 INI 2 SLoC // 0.6% comments • Rust 包仓库 Shell 1 SLoC // 0.9% comments • Rust 包仓库

包含 (Windows DLL, 1.5MB) dbghelp.dll, (Windows DLL, 1.5MB) dbghelp.dll, (Windows DLL, 1.5MB) sqlite3.dll, (Windows DLL, 570KB) sqlite3.dll, (Windows DLL, 290KB) libmikmod32.dll, (Windows DLL, 320KB) libmikmod64.dll 和更多.

文档

示例

Cargo.toml

[package]
name = "myplugin"
version = "0.1.0"
authors = ["Mack Stump <mack.stump@gmail.com>"]

[lib]
crate-type = ["cdylib"]

[dependencies]
libc = "0.2.21"
winapi = "0.2.8"
ceplugin = "0.5.0"

src/lib.rs

extern crate ceplugin;
extern crate libc;
extern crate winapi;

use winapi::*;

#[no_mangle]
pub extern "stdcall" fn CEPlugin_InitializePlugin(ef: &mut ceplugin::ExportedFunctions,
                                                  pluginid: libc::c_int) -> BOOL {
    (ef.ShowMessage)(b"Plugin Initialized\0" as *const libc::c_char);

    TRUE
}

#[no_mangle]
pub extern "stdcall" fn CEPlugin_GetVersion(pv: &mut ceplugin::PluginVersion,
                                            sizeofpluginversion: libc::c_int) -> BOOL {
    pv.version = 2;
    pv.pluginname = b"Rust CE Plugin\0" as *const libc::c_char;

    TRUE
}

#[no_mangle]
pub extern "stdcall" fn CEPlugin_DisablePlugin() -> BOOL {
    TRUE
}

依赖项