当前位置: 首页>>代码示例>>Java>>正文


Java Kernel32Util.formatMessage方法代码示例

本文整理汇总了Java中com.sun.jna.platform.win32.Kernel32Util.formatMessage方法的典型用法代码示例。如果您正苦于以下问题:Java Kernel32Util.formatMessage方法的具体用法?Java Kernel32Util.formatMessage怎么用?Java Kernel32Util.formatMessage使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.sun.jna.platform.win32.Kernel32Util的用法示例。


在下文中一共展示了Kernel32Util.formatMessage方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: shutdown

import com.sun.jna.platform.win32.Kernel32Util; //导入方法依赖的package包/类
public void shutdown() throws SystemException {
    final boolean success = advapi32.InitiateSystemShutdown(
        null,
        null,
        new WinDef.DWORD(0),
        true,
        false
    );
    if (!success) {
        throw new SystemException(Kernel32Util.formatMessage(kernel32.GetLastError()));
    }
}
 
开发者ID:msiedlarek,项目名称:winthing,代码行数:13,代码来源:SystemService.java

示例2: reboot

import com.sun.jna.platform.win32.Kernel32Util; //导入方法依赖的package包/类
public void reboot() throws SystemException {
    final boolean success = advapi32.InitiateSystemShutdown(
        null,
        null,
        new WinDef.DWORD(0),
        true,
        true
    );
    if (!success) {
        throw new SystemException(Kernel32Util.formatMessage(kernel32.GetLastError()));
    }
}
 
开发者ID:msiedlarek,项目名称:winthing,代码行数:13,代码来源:SystemService.java

示例3: suspend

import com.sun.jna.platform.win32.Kernel32Util; //导入方法依赖的package包/类
public void suspend() throws SystemException {
    final boolean success = kernel32.SetSystemPowerState(
        true,
        false
    );
    if (!success) {
        throw new SystemException(Kernel32Util.formatMessage(kernel32.GetLastError()));
    }
}
 
开发者ID:msiedlarek,项目名称:winthing,代码行数:10,代码来源:SystemService.java

示例4: hibernate

import com.sun.jna.platform.win32.Kernel32Util; //导入方法依赖的package包/类
public void hibernate() throws SystemException {
    final boolean success = kernel32.SetSystemPowerState(
            false,
            false
        );
    if (!success) {
        throw new SystemException(Kernel32Util.formatMessage(kernel32.GetLastError()));
    }
}
 
开发者ID:msiedlarek,项目名称:winthing,代码行数:10,代码来源:SystemService.java

示例5: WinDivertException

import com.sun.jna.platform.win32.Kernel32Util; //导入方法依赖的package包/类
public WinDivertException(int code) {
    this(code, Kernel32Util.formatMessage(code));
}
 
开发者ID:ffalcinelli,项目名称:jdivert,代码行数:4,代码来源:WinDivertException.java


注:本文中的com.sun.jna.platform.win32.Kernel32Util.formatMessage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。