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


Java Native.WCHAR_SIZE属性代码示例

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


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

示例1: getCurrentDesktopWallpaper

public String getCurrentDesktopWallpaper() {
	char[] chars = new char[User32Ext.MAX_PATH];
	String currentWallpaper = new String(chars);
	Pointer m = new Memory(Native.WCHAR_SIZE * (currentWallpaper.length()));
	User32Ext.INSTANCE.SystemParametersInfo(SPI.SPI_GETDESKWALLPAPER, currentWallpaper.length(), m, 0);
	currentWallpaper = m.getWideString(0);
	return currentWallpaper;
}
 
开发者ID:Guerra24,项目名称:NanoUI,代码行数:8,代码来源:Background.java

示例2: answerWithSetPointerReferenceToWideString

protected Answer<Integer> answerWithSetPointerReferenceToWideString(final String expectedString) {
	return invocation -> {
         Object[] args = invocation.getArguments();
         PointerByReference pr = (PointerByReference)args[0];

         Pointer m = new Memory(Native.WCHAR_SIZE * (expectedString.length() + 1));
         m.setWideString(0, expectedString);
         pr.setValue(m);
         return 0;
       };
}
 
开发者ID:mmarquee,项目名称:ui-automation,代码行数:11,代码来源:BaseAutomationTest.java

示例3: WStringByReference

/**
 * Creates a {@link WStringByReference} and allocates space for {
 * {@code dataSize} plus the size of the {@code null} terminator.
 *
 * @param dataSize the size to allocate in bytes excluding the {@code null}
 *            terminator.
 */
public WStringByReference(long dataSize) {
	super(dataSize < 1 ? Pointer.NULL : new Memory(dataSize + Native.WCHAR_SIZE));
}
 
开发者ID:DigitalMediaServer,项目名称:DigitalMediaServer,代码行数:10,代码来源:WStringByReference.java


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