Hopefully someone can point me in the right direction here. This question is half VC++, half VB so I hope it won't offend anyone.
I'm using a C++ SDK and trying to convert the header files to VB Bas. I've got some good reference for the translation but a few are proving to be elusive. Here are a couple that I just can't get, all help is greatly appreciated:
First is a Public Type Declaration:
Code:
typedef struct {
DWORD dwCurrentMilliSec ;
DWORD dwTotalMilliSec ;
float fRecMonitordB ; // REC Monitor dB value
} WRITEINFO ;
Code:
Public Type WRITEINFO
dwTotalMilliSec As Long
dwCurrentMilliSec As Long
float fRecMonitordB ; REC Monitor dB value
End Type
Next is this:
Code:
HANDLE DSSCreateFile( LPCTSTR lpDSSFileName, DWORD dwOpen, DWORD * lpError) ;
Last one is this:
Code:
INT DSSSetWritePointer(HANDLE hDSSFile, DWORD dwStartMilliSec, BYTE *bRateMode, BYTE bInsert, BYTE bRecMonitor ) ;
I been everywhere looking for more info on this and hoped that the C++ board here would be as helpful as the VB board has been for me.
Thanks in advance.