[go: up one dir, main page]

glib 0.17.10

Rust bindings for the GLib library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Take a look at the license at the top of the repository in the LICENSE file.

use std::path::PathBuf;

use crate::translate::*;

#[doc(alias = "g_win32_get_package_installation_directory_of_module")]
pub fn win32_get_package_installation_directory_of_module(
    hmodule: ffi::gpointer,
) -> Option<PathBuf> {
    unsafe {
        from_glib_full(ffi::g_win32_get_package_installation_directory_of_module(
            hmodule,
        ))
    }
}