• IRClipboardFunctions.dll 是一个DLL,可以用来编写的文字以及检索它从窗户的剪贴板。 剪贴板访问DLL的开发是为了以用自动播放媒体工作室4.0,虽然应当可以调用的任何Win32程序编写的C、C++、德尔菲,VB,等等。

    IRClipboardFunctions.dll 是用C++编写并没有任何外部的依赖关系。 它暴露了三种功能:

    -BOOL IsTextOnClipboard()

    返回真正的或虚假的,这取决于是否有文本可在窗户上的剪贴板。

    -BOOL CopyTextToClipboard(支strText)

    把文本的Windows的剪贴板。 返回真的,如果成功的或虚假的,如果它失败了(我不明白为什么它会永远失败的)。

    -支GetTextFromClipboard()

    获取内容的Windows的剪贴板,如果有文字提供,返回an empty string(""),如果不存在。

  • IRClipboardFunctions.dll एक DLL है कि कर सकते हैं इस्तेमाल किया जा करने के लिए पाठ लिखने के लिए और इसे पुनः प्राप्त से Windows क्लिपबोर्ड. क्लिपबोर्ड का उपयोग DLL विकसित किया गया था करने के लिए इस्तेमाल किया जा सकता के साथ ऑटोप्ले मीडिया स्टूडियो 4.0, हालांकि यह होना चाहिए प्रतिदेय से किसी भी Win32 कार्यक्रम में लिखा C, C++, डेल्फी, VB, आदि.

    IRClipboardFunctions.dll में लिखा गया था, सी++ और नहीं करता है किसी भी बाहरी निर्भरता है । यह तीन कार्यों:

    - BOOL IsTextOnClipboard()

    सही है या गलत पर निर्भर करता है या नहीं, वहाँ है पाठ पर उपलब्ध Windows क्लिपबोर्ड.

    - BOOL CopyTextToClipboard(LPCTSTR strText)

    डालता पाठ पर Windows क्लिपबोर्ड. सच रिटर्न अगर सफल या झूठी अगर यह विफल रहता है (मैं क्यों नहीं देखते हैं यह कभी असफल).

    - LPCTSTR GetTextFromClipboard()

    हो जाता है की सामग्री को Windows क्लिपबोर्ड है, अगर वहाँ पाठ के साथ उपलब्ध है, रिटर्न एक रिक्त स्ट्रिंग ( "" ), तो वहाँ नहीं है ।

  • IRClipboardFunctions.dll is a DLL that can be used to write text to and retrieve it from the Windows clipboard. The Clipboard Access DLL was developed to be used with AutoPlay Media Studio 4.0, although it should be callable from any Win32 program written in C, C++, Delphi, VB, etc.

    IRClipboardFunctions.dll was written in C++ and does not have any external dependencies. It exposes three functions:

    - BOOL IsTextOnClipboard()

    Returns TRUE or FALSE depending on whether or not there is text available on the Windows clipboard.

    - BOOL CopyTextToClipboard(LPCTSTR strText)

    Puts text onto the Windows clipboard. Returns TRUE if successful or FALSE if it fails (I don't see why it would ever fail).

    - LPCTSTR GetTextFromClipboard()

    Gets the contents of the Windows clipboard if there is text available, returns an empty string ("") if not there.