File tree 1 file changed +7
-7
lines changed
contrib/platform/src/com/sun/jna/platform/win32
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -191,40 +191,40 @@ public ByReference(Pointer memory) {
191
191
* function, set this member to sizeof(THREADENTRY32). If you do not initialize
192
192
* dwSize, Thread32First fails.
193
193
*/
194
- int dwSize ;
194
+ public int dwSize ;
195
195
196
196
/**
197
197
* This member is no longer used and is always set to zero.
198
198
*/
199
- int cntUsage ;
199
+ public int cntUsage ;
200
200
201
201
/**
202
202
* The thread identifier, compatible with the thread identifier returned by the
203
203
* CreateProcess function.
204
204
*/
205
- int th32ThreadID ;
205
+ public int th32ThreadID ;
206
206
207
207
/**
208
208
* The identifier of the process that created the thread.
209
209
*/
210
- int th32OwnerProcessID ;
210
+ public int th32OwnerProcessID ;
211
211
212
212
/**
213
213
* The kernel base priority level assigned to the thread. The priority is a
214
214
* number from 0 to 31, with 0 representing the lowest possible thread priority.
215
215
* For more information, see KeQueryPriorityThread.
216
216
*/
217
- NativeLong tpBasePri ;
217
+ public NativeLong tpBasePri ;
218
218
219
219
/**
220
220
* This member is no longer used and is always set to zero.
221
221
*/
222
- NativeLong tpDeltaPri ;
222
+ public NativeLong tpDeltaPri ;
223
223
224
224
/**
225
225
* This member is no longer used and is always set to zero.
226
226
*/
227
- int dwFlags ;
227
+ public int dwFlags ;
228
228
229
229
public THREADENTRY32 () {
230
230
dwSize = size ();
You can’t perform that action at this time.
0 commit comments