Need help.....
-
RtlCopyMemory (ddcamVideoData, lpVHdr->lpData , lpVHdr->dwBufferLength ); ^ ^ ^ ^ could some of you tell me that what's the function of the arrow?? Thanks alot!
-
RtlCopyMemory (ddcamVideoData, lpVHdr->lpData , lpVHdr->dwBufferLength ); ^ ^ ^ ^ could some of you tell me that what's the function of the arrow?? Thanks alot!
Francis Chau wrote: could some of you tell me that what's the function of the arrow?? Arrows are used shoot from a bow !
suhredayan
There is no spoon. -
Francis Chau wrote: could some of you tell me that what's the function of the arrow?? Arrows are used shoot from a bow !
suhredayan
There is no spoon.suhredayan® wrote: Arrows are used shoot from a bow ! :laugh::laugh:
-
RtlCopyMemory (ddcamVideoData, lpVHdr->lpData , lpVHdr->dwBufferLength ); ^ ^ ^ ^ could some of you tell me that what's the function of the arrow?? Thanks alot!
-
The arrow is the member-dereference operator. Whenever you are using a pointer, you use an arrow rather than a dot to access its members.
Thanks!