home *** CD-ROM | disk | FTP | other *** search
- package WMPNS;
-
- public class IWMPPlayerApplication {
- int m_pIWMPPlayerApplication = -1;
- int m_hWnd = 0;
-
- private native boolean equalsNative(int var1, int var2, int var3);
-
- public boolean getHasDisplay() {
- return this.getHasDisplayNative(this.m_pIWMPPlayerApplication, this.m_hWnd);
- }
-
- IWMPPlayerApplication() {
- }
-
- private native void switchToPlayerApplicationNative(int var1, int var2);
-
- public boolean getPlayerDocked() {
- return this.getPlayerDockedNative(this.m_pIWMPPlayerApplication, this.m_hWnd);
- }
-
- public boolean equals(IWMPPlayerApplication var1) {
- return this.equalsNative(this.m_pIWMPPlayerApplication, var1.m_pIWMPPlayerApplication, this.m_hWnd);
- }
-
- private native void switchToControlNative(int var1, int var2);
-
- private native boolean getPlayerDockedNative(int var1, int var2);
-
- public void switchToControl() {
- this.switchToControlNative(this.m_pIWMPPlayerApplication, this.m_hWnd);
- }
-
- private native boolean getHasDisplayNative(int var1, int var2);
-
- public void switchToPlayerApplication() {
- this.switchToPlayerApplicationNative(this.m_pIWMPPlayerApplication, this.m_hWnd);
- }
- }
-