Changeset 5594 for trunk/src/advapi32/ADVAPI32.CPP
- Timestamp:
- Apr 26, 2001, 7:00:33 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/advapi32/ADVAPI32.CPP
r5569 r5594 1 /* $Id: ADVAPI32.CPP,v 1.1 7 2001-04-22 10:39:26sandervl Exp $ */1 /* $Id: ADVAPI32.CPP,v 1.18 2001-04-26 17:00:33 sandervl Exp $ */ 2 2 3 3 /* … … 901 901 902 902 903 /*****************************************************************************904 * Name : IsTextUnicode905 * Purpose : The IsTextUnicode function determines whether a buffer probably906 * contains a form of Unicode text. The function uses various907 * statistical and deterministic methods to make its determination,908 * under the control of flags passed via lpi. When the function909 * returns, the results of such tests are reported via lpi. If all910 * specified tests are passed, the function returns TRUE; otherwise,911 * it returns FALSE.912 * Parameters: CONST LPVOID lpBuffer pointer to an input buffer to be examined913 * int cb the size in bytes of the input buffer914 * LPINT lpi pointer to flags that condition text examination and receive results915 * Variables :916 * Result :917 * Remark :918 * Status : UNTESTED STUB919 *920 * Author : Patrick Haller [Tue, 1998/06/16 23:00]921 *****************************************************************************/922 923 DWORD WIN32API IsTextUnicode(CONST LPVOID lpBuffer,924 int cb,925 LPINT lpi)926 {927 DWORD dwResult = 0;928 929 dprintf(("ADVAPI32: IsTextUnicode(%08xh,%08xh,%08xh) not implemented.\n",930 lpBuffer,931 cb,932 lpi));933 934 if (cb & 0x0001) dwResult |= IS_TEXT_UNICODE_ODD_LENGTH;935 936 return (dwResult); /* signal failure */937 }938 939 903 940 904 /*****************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.