Created
June 30, 2015 20:49
-
-
Save kumatti1/a8f2867e798aad6f1e51 to your computer and use it in GitHub Desktop.
OutputDebugStringW
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Private Declare Function OutputDebugStringW Lib "kernel32.dll" (ByVal lpOutputString As LongPtr) As LongPtr | |
Sub hoge() | |
Dim ret As LongPtr | |
ret = OutputDebugStringW(StrPtr("あいうえお")) | |
MsgBox ret | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment