source: osm/applications/editors/josm/plugins/opendata/includes/org/j7zip/SevenZip/HRESULT.java

Last change on this file was 36483, checked in by stoecker, 6 months ago

set eol-style, fix checkstyle issues, add ignores

  • Property svn:eol-style set to native
File size: 304 bytes
Line 
1package org.j7zip.SevenZip;
2
3public class HRESULT {
4 public static final int S_OK = 0;
5 public static final int S_FALSE = 1;
6
7 public static final int E_NOTIMPL = 0x80004001;
8 public static final int E_FAIL = 0x80004005;
9 public static final int E_INVALIDARG = 0x80070057;
10}
11
Note: See TracBrowser for help on using the repository browser.