Skip to content

Commit

Permalink
Configuring git autocrlf
Browse files Browse the repository at this point in the history
  • Loading branch information
widdisd authored and widdisd committed Jun 14, 2018
1 parent 99974d4 commit a7e17d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Features
* [#954](https://github.com/java-native-access/jna/pull/954): Add `c.s.j.Structure.FieldOrder` annotation to define the field order of a structures without implementing `Structure#getFieldOrder()` - [@idosu](https://github.com/idosu).
* [#959](https://github.com/java-native-access/jna/pull/959): Added `GetProcessTimes` and `GetProcessIoCounters` to `com.sun.jna.platform.win32.Kernel32` - [@dbwiddis](https://github.com/dbwiddis).
* [#952](https://github.com/java-native-access/jna/issues/952): Added `CreateMutex`, `OpenMutex` and `ReleaseMutex` to `com.sun.jna.platform.win32.Kernel32` - [@matthiasblaesing](https://github.com/matthiasblaesing).
* [#973](https://github.com/java-native-access/jna/issues/973): Added `PdhLookupPerfNameByIndex`, `PdhLookupPerfIndexByName` and `PdhEnumObjectItems` to `com.sun.jna.platform.win32.Pdh` - [@dbwiddis](https://github.com/dbwiddis).
* [#973](https://github.com/java-native-access/jna/issues/973): Added `PdhLookupPerfNameByIndex`, `PdhLookupPerfIndexByName`, and `PdhEnumObjectItems` to `com.sun.jna.platform.win32.Pdh` - [@dbwiddis](https://github.com/dbwiddis).

Bug Fixes
---------
Expand Down
1 change: 1 addition & 0 deletions contrib/platform/src/com/sun/jna/platform/win32/Pdh.java
Original file line number Diff line number Diff line change
Expand Up @@ -394,4 +394,5 @@ int PdhEnumObjectItems(String szDataSource, String szMachineName, String szObjec
*/
int PdhLookupPerfNameByIndex(String szMachineName, int dwNameIndex, char[] szNameBuffer,
DWORDByReference pcchNameBufferSize);

}
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,5 @@ public void testEnumObjectItems() {
List<String> counters = Native.toStringList(mszCounterList);
assertTrue(counters.contains(processorTimeStr));
}

}

0 comments on commit a7e17d4

Please sign in to comment.