Ignore:
Timestamp:
Oct 19, 2011, 11:26:02 AM (14 years ago)
Author:
dmik
Message:

Replace "\" with "/" in include statements.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/crypt32/decode.c

    r21354 r21720  
    4848#include "winnls.h"
    4949#include "snmp.h"
    50 #include "wine\debug.h"
    51 #include "wine\exception.h"
     50#include "wine/debug.h"
     51#include "wine/exception.h"
    5252#include "crypt32_private.h"
    5353
     
    784784        BYTE lenBytes = GET_LEN_BYTES(pbEncoded[1]);
    785785        DWORD bytesNeeded = sizeof(CRYPT_DER_BLOB);
    786        
     786
    787787        if (!(dwFlags & CRYPT_DECODE_NOCOPY_FLAG))
    788788            bytesNeeded += 1 + lenBytes + dataLen;
     
    15621562
    15631563                    value->Value.cbData = MultiByteToWideChar(CP_UTF8, 0,
    1564                      (LPCSTR)pbEncoded + 1 + lenBytes, dataLen, 
     1564                     (LPCSTR)pbEncoded + 1 + lenBytes, dataLen,
    15651565                     str, bytesNeeded - sizeof(CERT_NAME_VALUE)) * 2;
    15661566                    break;
     
    27412741       offsetof(CRYPT_ALGORITHM_IDENTIFIER, pszObjId), 0 },
    27422742     { 0, offsetof(CRYPT_ALGORITHM_IDENTIFIER, Parameters),
    2743        CRYPT_AsnDecodeCopyBytes, sizeof(CRYPT_OBJID_BLOB), TRUE, TRUE, 
     2743       CRYPT_AsnDecodeCopyBytes, sizeof(CRYPT_OBJID_BLOB), TRUE, TRUE,
    27442744       offsetof(CRYPT_ALGORITHM_IDENTIFIER, Parameters.pbData), 0 },
    27452745    };
     
    34213421        struct AsnDecodeSequenceItem items[] = {
    34223422         { ASN_BITSTRING, offsetof(CERT_BASIC_CONSTRAINTS_INFO, SubjectType),
    3423            CRYPT_AsnDecodeBitsInternal, sizeof(CRYPT_BIT_BLOB), FALSE, TRUE, 
     3423           CRYPT_AsnDecodeBitsInternal, sizeof(CRYPT_BIT_BLOB), FALSE, TRUE,
    34243424           offsetof(CERT_BASIC_CONSTRAINTS_INFO, SubjectType.pbData), 0 },
    34253425         { ASN_INTEGER, offsetof(CERT_BASIC_CONSTRAINTS_INFO,
Note: See TracChangeset for help on using the changeset viewer.