Beege Posted August 16, 2007 Posted August 16, 2007 Can anyone Help explain how to create the structure for this dll?typedef struct _INTERNET_BUFFERS { DWORD dwStructSize; _INTERNET_BUFFERS* Next;-------------------------------------------This is the part thats confusing me. LPCTSTR lpcszHeader; DWORD dwHeadersLength; DWORD dwHeadersTotal; LPVOID lpvBuffer; DWORD dwBufferLength; DWORD dwBufferTotal; DWORD dwOffsetLow; DWORD dwOffsetHigh;} INTERNET_BUFFERS, *LPINTERNET_BUFFERS;dwStructSizeUnsigned long integer value used for application programming interface (API) versioning. This is set to the size of the INTERNET_BUFFERS structure in bytes. NextPointer to the next INTERNET_BUFFERS structure. lpcszHeaderPointer to a string value that contains the headers. This value can be NULL. dwHeadersLengthUnsigned long integer value that contains the length of the headers, in TCHARs, if lpcszHeader is not NULL. dwHeadersTotalUnsigned long integer value that contains the size of the headers if there is not enough memory in the buffer. lpvBuffer Pointer to the data buffer. dwBufferLength Unsigned long integer value that contains the length of the buffer, in TCHARs, if lpvBuffer is not NULL. dwBufferTotal Unsigned long integer value that contains the total size of the resource. dwOffsetLow Unsigned long integer value that is used for read ranges. dwOffsetHigh Unsigned long integer value that is used for read ranges.---------I don't get what the next Internet_buffer sturcture is for. Thanks MSDN if you want to look Assembly Code: fasmg . fasm . BmpSearch . Au3 Syntax Highlighter . Bounce Multithreading Example . IDispatchASMUDFs: Explorer Frame . ITaskBarList . Scrolling Line Graph . Tray Icon Bar Graph . Explorer Listview . Wiimote . WinSnap . Flicker Free Labels . iTunesPrograms: Ftp Explorer . Snipster . Network Meter . Resistance Calculator
Zedna Posted August 16, 2007 Posted August 16, 2007 try to use "ptr" type for that element Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now