You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
717 B
31 lines
717 B
#include "fileshar.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++ */
|
|
#endif /* __cplusplus */
|
|
|
|
typedef struct {
|
|
LPVOID lp;
|
|
LONG cb;
|
|
} EXTRA, FAR * LPEXTRA;
|
|
|
|
HRESULT ReadExtra(LPEXTRA extra,
|
|
DWORD ckid,
|
|
LPVOID lpData,
|
|
LONG FAR *lpcbData);
|
|
HRESULT WriteExtra(LPEXTRA extra,
|
|
DWORD ckid,
|
|
LPVOID lpData,
|
|
LONG cbData);
|
|
|
|
HRESULT ReadIntoExtra(LPEXTRA extra,
|
|
HSHFILE hshfile,
|
|
MMCKINFO FAR *lpck);
|
|
|
|
LONG FindChunkAndKeepExtras(LPEXTRA extra, HSHFILE hshfile,
|
|
MMCKINFO FAR* lpck, MMCKINFO FAR* lpckParent,
|
|
UINT uFlags);
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" { */
|
|
#endif /* __cplusplus */
|