-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move remaining methods from jnacontrib.jna.Advapi32 to real Advapi32 #821
Comments
While the methods should indeed be moved, the control-ntservice does work and was recently brought in-line with the changes with jna-platform. |
I don't see those releases on any Maven repositories we currently pull from, but I guess I can't check repositories I'm unaware of. |
matthiasblaesing
added a commit
to matthiasblaesing/jna
that referenced
this issue
Aug 13, 2017
The ntservice poject contained additional definitions for windows service related functionality. Unittests are added in the form of a sample service implementation, that is installed/uninstalled and invoked. com.sun.jna.platform.win32.Advapi32: - StartServiceCtrlDispatcher - RegisterServiceCtrlHandler - RegisterServiceCtrlHandlerEx - SetServiceStatus - CreateService - DeleteService com.sun.jna.platform.win32.Winsvc: - Handler - HandlerEx - SERVICE_MAIN_FUNCTION - SERVICE_TABLE_ENTRY - SERVICE_DESCRIPTION - SERVICE_STATUS_HANDLE Closes: java-native-access#821 Closes: java-native-access#258
matthiasblaesing
added a commit
to matthiasblaesing/jna
that referenced
this issue
Aug 17, 2017
The ntservice poject contained additional definitions for windows service related functionality. Unittests are added in the form of a sample service implementation, that is installed/uninstalled and invoked. com.sun.jna.platform.win32.Advapi32: - StartServiceCtrlDispatcher - RegisterServiceCtrlHandler - RegisterServiceCtrlHandlerEx - SetServiceStatus - CreateService - DeleteService com.sun.jna.platform.win32.Winsvc: - Handler - HandlerEx - SERVICE_MAIN_FUNCTION - SERVICE_TABLE_ENTRY - SERVICE_DESCRIPTION - SERVICE_STATUS_HANDLE Closes: java-native-access#821 Closes: java-native-access#258
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
contrib-ntservice is in a questionable supported status. The artifacts aren't listed in any Maven repositories, so they slide further and further out of date with the real JNA release.
I tried to remove the dependency entirely, and it seems like many of the methods in its private copy of Advapi32 are now in the main Advapi32 in jna-platform.
The rest of them could be cut and pasted across.
Obviously there is the problem of tests, which I don't know how you would do for something which creates a service.
The text was updated successfully, but these errors were encountered: