| 1 | /* |
| 2 | * $Id: HWND.java,v 1.1.1.5 2004/05/25 20:23:24 hastings Exp $ |
| 3 | * |
| 4 | * (c) Copyright, Moebius Solutions, Inc., 2004 |
| 5 | * |
| 6 | * All Rights Reserved |
| 7 | * |
| 8 | * This material may be reproduced by or for the U. S. Government |
| 9 | * pursuant to the copyright license under the clause at |
| 10 | * DFARS 252.227-7014 (OCT 2001). |
| 11 | */ |
| 12 | |
| 13 | package com.moesol.bindings.platform_sdk.windows_api; |
| 14 | |
| 15 | /** |
| 16 | * opaque from java side, only JNI can update the m_hwnd field. |
| 17 | */ |
| 18 | public class HWND extends HANDLE { |
| 19 | HWND(long hwnd) { |
| 20 | super(hwnd); |
| 21 | } |
| 22 | HWND(long hwnd, boolean temporary) { |
| 23 | super(hwnd, temporary); |
| 24 | } |
| 25 | } |