本文整理汇总了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()));
}
}
示例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()));
}
}
示例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()));
}
}
示例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()));
}
}
示例5: WinDivertException
import com.sun.jna.platform.win32.Kernel32Util; //导入方法依赖的package包/类
public WinDivertException(int code) {
this(code, Kernel32Util.formatMessage(code));
}