|
-
Aug 3rd, 2005, 09:41 AM
#1
Thread Starter
Member
What do 'w', 'dw', 'lpsz', etc stand for?
Code:
Private Type SYSTEMTIME
wYear As Integer
dwLowDateTime As Long
lpszSourceName As Long
pDest as Any
lpFile
Ttime as FILETIME
End Type
Pls advise what do 'w', 'dw', 'lpsz', 'p', and 'lp' mean? Thanks.
-
Aug 3rd, 2005, 09:45 AM
#2
Fanatic Member
Re: What do 'w', 'dw', 'lpsz', etc stand for?
Just variable names. The letters may be in reference to another part of the program or something, but it looks like they are just the names given to the variables.
Here's to us!
Who's like us?
Darned few, and they're all dead!
-
Aug 3rd, 2005, 09:54 AM
#3
Thread Starter
Member
Re: What do 'w', 'dw', 'lpsz', etc stand for?
I think 'w', 'dw', and etc are used to differentiate the type of variable, e.g. 'w' -> WORD. So, can you guest what 'dw', 'lpsz', 'pDest' and 'lp' stand for? Thanks.
-
Aug 3rd, 2005, 10:00 AM
#4
Re: What do 'w', 'dw', 'lpsz', etc stand for?
w= Word (2 byte short integer)
dw = DWord (4 byte integer)
p = untyped pointer
lp = generic long pointer
lpsz = long pointer to a null-terminated string
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|