home *** CD-ROM | disk | FTP | other *** search
-
- #include <windows.h>
-
-
- //
- // ConsPuts:
- // Print a string to StdOut on the console
- //
- int ConsPuts(char *pszString)
- {
- DWORD nLen = strlen(pszString);
- DWORD nWritten;
- HANDLE hOutput = GetStdHandle(STD_OUTPUT_HANDLE);
- BOOL bRet;
-
- bRet = WriteConsole(hOutput, pszString, nLen, &nWritten, NULL);
- return (!bRet || (nWritten != nLen)) ? 0 : nLen;
- }
-
-
-
- int main(int argc, char *argv[])
- {
- ConsPuts("Welcome to the your first console program.\r\n");
- return 0;
- }
-
-
-
-