當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。