Skip to content

Commit ae66f99

Browse files
committed
Modify getTickCount prototypes (U3/UE9) (#30)
getTickCount() -> getTickCount( void), no input parameters
1 parent a707e81 commit ae66f99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/U3/u3.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ HANDLE openUSBConnection( int localID);
121121
void closeUSBConnection( HANDLE hDevice);
122122
//Closes a HANDLE to a U3 device.
123123

124-
long getTickCount();
124+
long getTickCount( void);
125125
//Returns the number of milliseconds that has elasped since the system was
126126
//started.
127127

examples/UE9/ue9.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ HANDLE openUSBConnection( int localID);
123123
void closeUSBConnection( HANDLE hDevice);
124124
//Closes a HANDLE to a UE9 device.
125125

126-
long getTickCount();
126+
long getTickCount( void);
127127
//Returns the number of milliseconds that has elasped since the system was
128128
//started.
129129

0 commit comments

Comments
 (0)