Changeset 95596 in vbox for trunk/include
- Timestamp:
- Jul 12, 2022 2:21:54 AM (2 years ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/asn1.h
r95584 r95596 1028 1028 RTDECL(int) RTAsn1Time_CompareWithTimeSpec(PCRTASN1TIME pLeft, PCRTTIMESPEC pTsRight); 1029 1029 1030 /** 1031 * Extended init function that lets you select the kind of time object (UTC or 1032 * generalized). 1033 */ 1030 1034 RTDECL(int) RTAsn1Time_InitEx(PRTASN1TIME pThis, uint32_t uTag, PCRTASN1ALLOCATORVTABLE pAllocator); 1035 1036 /** 1037 * Combines RTAsn1Time_InitEx() and RTAsn1Time_SetTime(). 1038 */ 1039 RTDECL(int) RTAsn1Time_InitWithTime(PRTASN1TIME pThis, uint32_t uTag, PCRTASN1ALLOCATORVTABLE pAllocator, PCRTTIME pTime); 1040 1041 /** 1042 * Sets the ASN.1 time value to @a pTime. 1043 * 1044 * @returns IPRT status code. 1045 * @param pThis The ASN.1 time object to modify. 1046 * @param pAllocator The allocator to use. 1047 * @param pTime The time to set. 1048 */ 1049 RTDECL(int) RTAsn1Time_SetTime(PRTASN1TIME pThis, PCRTASN1ALLOCATORVTABLE pAllocator, PCRTTIME pTime); 1050 1051 /** 1052 * Sets the ASN.1 time value to @a pTimeSpec. 1053 * 1054 * @returns IPRT status code. 1055 * @param pThis The ASN.1 time object to modify. 1056 * @param pAllocator The allocator to use. 1057 * @param pTimeSpec The time to set. 1058 */ 1059 RTDECL(int) RTAsn1Time_SetTimeSpec(PRTASN1TIME pThis, PCRTASN1ALLOCATORVTABLE pAllocator, PCRTTIMESPEC pTimeSpec); 1031 1060 1032 1061 /** @name Predicate macros for determing the exact type of RTASN1TIME. -
trunk/include/iprt/mangling.h
r95586 r95596 3383 3383 # define RTAsn1Time_Init RT_MANGLER(RTAsn1Time_Init) 3384 3384 # define RTAsn1Time_InitEx RT_MANGLER(RTAsn1Time_InitEx) 3385 # define RTAsn1Time_InitWithTime RT_MANGLER(RTAsn1Time_InitWithTime) 3386 # define RTAsn1Time_SetTime RT_MANGLER(RTAsn1Time_SetTime) 3387 # define RTAsn1Time_SetTimeSpec RT_MANGLER(RTAsn1Time_SetTimeSpec) 3385 3388 # define RTAsn1UtcTime_CheckSanity RT_MANGLER(RTAsn1UtcTime_CheckSanity) 3386 3389 # define RTAsn1UtcTime_Clone RT_MANGLER(RTAsn1UtcTime_Clone)
Note:
See TracChangeset
for help on using the changeset viewer.