home *** CD-ROM | disk | FTP | other *** search
/ BUG 4 / BUGCD1997_05.BIN / aplic / clip4win / clip4win.exe / C4W30E.HUF / SOURCE / BWCC.PRG < prev    next >
Text File  |  1995-05-09  |  1KB  |  43 lines

  1. /////////////////////////
  2. //
  3. //    bwcc.prg - Borland BWCC.DLL API
  4. //
  5. //    >>> NOW IN CLIP4WIN.LIB <<<
  6. //
  7. //    Written by:    John M. Skelton, 9-Feb-95.
  8. //
  9. //    Copyright (C) 1995 Skelton Software, Kendal Cottage, Hillam, Leeds LS25 5HP, UK.
  10. //    All Rights Reserved.
  11. //
  12. //    See e.g. WORKSHOP\DOC\BWCCAPI.RW and e.g. \BORCPP\INCLUDE\BWCC.H
  13. //    (depends where you installed them).
  14. //
  15. /////////////////////////
  16.  
  17. #include "windows.ch"
  18. #include "dll.ch"
  19.  
  20. #ifdef    TESTING
  21. function main()
  22. BWCCMessageBox(0, "Borland BWCCMessageBox", "Clip-4-Win", MB_OK)
  23. return nil
  24. #endif
  25.  
  26. _DLL FUNC BWCCMessageBox(hWnd AS HWND, cText AS LPCSTR, cTitle AS LPCSTR,;
  27.               nStyle AS UINT) AS int Pascal:BWCC.BWCCMessageBox
  28.  
  29. _DLL FUNC BWCCDefDlgProc(hDlg AS HWND, nMsg AS WORD, nwParam AS WORD,    ;
  30.               nlParam AS LONG) AS LONG Pascal:BWCC.BWCCDefDlgProc
  31.  
  32. _DLL FUNC BWCCDefWindowProc(hDlg AS HWND, nMsg AS WORD, nwParam AS WORD,;
  33.               nlParam AS LONG) AS LONG Pascal:BWCC.BWCCDefWindowProc
  34.  
  35. _DLL FUNC BWCCDefMDIChildProc(hDlg AS HWND, nMsg AS WORD, nwParam AS WORD,;
  36.               nlParam AS LONG) AS LONG Pascal:BWCC.BWCCDefMDIChildProc
  37.  
  38. // There is no BWCCFrameProc() - use the normal DefFrameProc().
  39.  
  40. _DLL FUNC BWCCGetVersion() AS DWORD Pascal:BWCC.BWCCGetVersion
  41.  
  42. _DLL FUNC BWCCGetPattern() AS HBRUSH Pascal:BWCC.BWCCGetPattern
  43.