home *** CD-ROM | disk | FTP | other *** search
- package WMPNS;
-
- public class IWMPError {
- int m_pIWMPError = -1;
- int m_hWnd = 0;
-
- private native boolean equalsNative(int var1, int var2, int var3);
-
- public void clearErrorQueue() {
- this.clearErrorQueueNative(this.m_pIWMPError, this.m_hWnd);
- }
-
- IWMPError() {
- }
-
- public long getErrorCount() {
- return this.getErrorCountNative(this.m_pIWMPError, this.m_hWnd);
- }
-
- private native int itemNative(long var1, int var3, int var4);
-
- public boolean equals(IWMPError var1) {
- return this.equalsNative(this.m_pIWMPError, var1.m_pIWMPError, this.m_hWnd);
- }
-
- private native void webHelpNative(int var1, int var2);
-
- public IWMPErrorItem item(long var1) {
- int var3 = this.itemNative(var1, this.m_pIWMPError, this.m_hWnd);
- if (var3 >= 0) {
- IWMPErrorItem var4 = new IWMPErrorItem();
- if (var4 != null) {
- var4.m_pIWMPErrorItem = var3;
- var4.m_hWnd = this.m_hWnd;
- }
-
- return var4;
- } else {
- return null;
- }
- }
-
- public void webHelp() {
- this.webHelpNative(this.m_pIWMPError, this.m_hWnd);
- }
-
- private native void clearErrorQueueNative(int var1, int var2);
-
- private native long getErrorCountNative(int var1, int var2);
- }
-