Source code of Windows XP (NT5)
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.

10 lines
404 B

  1. // SVUTIL.H
  2. #include <_mvutil.h>
  3. BOOL WINAPI StreamGetLine
  4. (IStream *pStream, LPWSTR rgch, int *cch, int iReceptacleSize);
  5. BOOL StreamGetLineASCII
  6. (IStream *pStream, LPWSTR rgch, int *cch, int iReceptacleSize);
  7. DWORD BinFromHex(LPSTR lpszHex, LPSTR lpbData, DWORD dwSize);
  8. DWORD HexFromBin(LPSTR lpszHex, LPBYTE lpbData, DWORD dwSize);
  9. LPSTR WINAPI StringToLong(LPCSTR lszBuf, LPDWORD lpValue);