Java AWT Native Interface: Difference between revisions

Content deleted Content added
Reverted good faith edits by Editor314159 (talk): "walkthrough" is the proper spelling in this context
needs refs
Line 31:
== Native painting ==
One can paint as if it is a native application. In [[Microsoft Windows|Windows]], the JVM will pass a HWND and other window information to the native application so that the application will "know" where to draw. It could use GDI to draw a Rectangle. The window information the native side needs will be in a <code>JAWT_Win32DrawingSurfaceInfo</code> structure (depending on [[Operating System]]) which can be retrieved with this line: {{code|lang=c|1=dsi_win = (JAWT_Win32DrawingSurfaceInfo*)dsi->platformInfo;}}
 
==References==
{{reflist}}
 
== External links==