Changeset 57358 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/VBox/Runtime/common/misc
- Files:
-
- 36 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/RTAssertMsg1Weak.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2Add.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2AddWeak.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2AddWeakV.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2Weak.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTAssertMsg2WeakV.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTFileModeToFlags.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include <iprt/err.h> -
trunk/src/VBox/Runtime/common/misc/RTFileOpenF.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/file.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTFileOpenV.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/file.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTMemWipeThoroughly.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/mem.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/RTSystemIsInsideVM-amd64-x86.cpp
r57078 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "internal/iprt.h" 31 32 #include <iprt/system.h> -
trunk/src/VBox/Runtime/common/misc/aiomgr.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 31 32 #include <iprt/aiomgr.h> … … 45 46 #include "internal/magics.h" 46 47 47 /******************************************************************************* 48 * Structures and Typedefs * 49 *******************************************************************************/ 48 49 /********************************************************************************************************************************* 50 * Structures and Typedefs * 51 *********************************************************************************************************************************/ 50 52 51 53 /** Pointer to an internal async I/O file instance. */ … … 207 209 #define RTAIOMGRREQ_FLAGS_PREPARED RT_BIT_32(0) 208 210 209 /******************************************************************************* 210 * Defined Constants And Macros * 211 *******************************************************************************/ 211 212 /********************************************************************************************************************************* 213 * Defined Constants And Macros * 214 *********************************************************************************************************************************/ 212 215 213 216 /** Validates a handle and returns VERR_INVALID_HANDLE if not valid. */ … … 228 231 } while (0) 229 232 230 /******************************************************************************* 231 * Internal Functions * 232 *******************************************************************************/ 233 234 /********************************************************************************************************************************* 235 * Internal Functions * 236 *********************************************************************************************************************************/ 233 237 234 238 static int rtAioMgrReqsEnqueue(PRTAIOMGRINT pThis, PRTAIOMGRFILEINT pFile, -
trunk/src/VBox/Runtime/common/misc/assert.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/assert.h> 32 32 #include "internal/iprt.h" … … 43 43 44 44 45 /******************************************************************************* 46 * Global Variables *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Global Variables * 47 *********************************************************************************************************************************/ 48 48 /** The last assert message, 1st part. */ 49 49 RTDATADECL(char) g_szRTAssertMsg1[1024]; -
trunk/src/VBox/Runtime/common/misc/buildconfig.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "internal/iprt.h" 32 32 #include <iprt/buildconfig.h> -
trunk/src/VBox/Runtime/common/misc/cidr.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/cidr.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/circbuf.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/circbuf.h> 32 32 #include <iprt/mem.h> … … 36 36 37 37 38 /******************************************************************************* 39 * Structures and Typedefs *40 ******************************************************************************* /38 /********************************************************************************************************************************* 39 * Structures and Typedefs * 40 *********************************************************************************************************************************/ 41 41 /** @todo r=bird: this is missing docs and magic. */ 42 42 typedef struct RTCIRCBUF -
trunk/src/VBox/Runtime/common/misc/getopt.cpp
r56700 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include <iprt/cidr.h> 31 32 #include <iprt/net.h> /* must come before getopt.h */ … … 41 42 42 43 43 /******************************************************************************* 44 * Global Variables *45 ******************************************************************************* /44 /********************************************************************************************************************************* 45 * Global Variables * 46 *********************************************************************************************************************************/ 46 47 /** 47 48 * Standard options that gets included unless RTGETOPTINIT_FLAGS_NO_STD_OPTS is -
trunk/src/VBox/Runtime/common/misc/getoptargv.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include <iprt/getopt.h> 31 32 #include "internal/iprt.h" … … 38 39 39 40 40 /******************************************************************************* 41 * Header Files *42 ******************************************************************************* /41 /********************************************************************************************************************************* 42 * Header Files * 43 *********************************************************************************************************************************/ 43 44 /** 44 45 * Array indexed by the quoting type and 7-bit ASCII character. -
trunk/src/VBox/Runtime/common/misc/handle.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/handle.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/handletable.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/handletable.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/handletablectx.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/handletable.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/handletablesimple.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/handletable.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/http.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/http.h> 32 32 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Structures and Typedefs *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Structures and Typedefs * 49 *********************************************************************************************************************************/ 50 50 typedef struct RTHTTPINTERNAL 51 51 { … … 74 74 typedef RTHTTPMEMCHUNK *PRTHTTPMEMCHUNK; 75 75 76 /******************************************************************************* 77 * Defined Constants And Macros * 78 *******************************************************************************/ 76 77 /********************************************************************************************************************************* 78 * Defined Constants And Macros * 79 *********************************************************************************************************************************/ 79 80 #define CURL_FAILED(rcCurl) (RT_UNLIKELY(rcCurl != CURLE_OK)) 80 81 -
trunk/src/VBox/Runtime/common/misc/lockvalidator.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include <iprt/lockvalidator.h> 31 32 #include "internal/iprt.h" … … 47 48 48 49 49 /******************************************************************************* 50 * Defined Constants And Macros *51 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Defined Constants And Macros * 52 *********************************************************************************************************************************/ 52 53 /** Macro that asserts that a pointer is aligned correctly. 53 54 * Only used when fighting bugs. */ … … 94 95 95 96 96 /******************************************************************************* 97 * Structures and Typedefs *98 ******************************************************************************* /97 /********************************************************************************************************************************* 98 * Structures and Typedefs * 99 *********************************************************************************************************************************/ 99 100 /** 100 101 * Deadlock detection stack entry. … … 226 227 227 228 228 /******************************************************************************* 229 * Global Variables *230 ******************************************************************************* /229 /********************************************************************************************************************************* 230 * Global Variables * 231 *********************************************************************************************************************************/ 231 232 /** Serializing object destruction and deadlock detection. 232 233 * … … 265 266 266 267 267 /******************************************************************************* 268 * Internal Functions *269 ******************************************************************************* /268 /********************************************************************************************************************************* 269 * Internal Functions * 270 *********************************************************************************************************************************/ 270 271 static void rtLockValidatorClassDestroy(RTLOCKVALCLASSINT *pClass); 271 272 static uint32_t rtLockValidatorStackDepth(PRTTHREADINT pThread); -
trunk/src/VBox/Runtime/common/misc/message.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include "internal/iprt.h" 31 32 #include <iprt/message.h> … … 37 38 38 39 39 /******************************************************************************* 40 * Global Variables *41 ******************************************************************************* /40 /********************************************************************************************************************************* 41 * Global Variables * 42 *********************************************************************************************************************************/ 42 43 /** The program name we're using. */ 43 44 static const char * volatile g_pszProgName = NULL; -
trunk/src/VBox/Runtime/common/misc/once.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/once.h> 32 32 #include "internal/iprt.h" … … 49 49 50 50 51 /******************************************************************************* 52 * Global Variables *53 ******************************************************************************* /51 /********************************************************************************************************************************* 52 * Global Variables * 53 *********************************************************************************************************************************/ 54 54 #ifndef RTONCE_NO_TERM 55 55 /** For initializing the clean-up list code. */ -
trunk/src/VBox/Runtime/common/misc/req.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/req.h> 32 32 #include "internal/iprt.h" … … 45 45 46 46 47 /******************************************************************************* 48 * Internal Functions *49 ******************************************************************************* /47 /********************************************************************************************************************************* 48 * Internal Functions * 49 *********************************************************************************************************************************/ 50 50 51 51 -
trunk/src/VBox/Runtime/common/misc/reqpool.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/req.h> 32 32 #include "internal/iprt.h" … … 47 47 48 48 49 /******************************************************************************* 50 * Defined Constants And Macros *51 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Defined Constants And Macros * 51 *********************************************************************************************************************************/ 52 52 /** The max number of worker threads. */ 53 53 #define RTREQPOOL_MAX_THREADS UINT32_C(16384) … … 58 58 59 59 60 /******************************************************************************* 61 * Structures and Typedefs *62 ******************************************************************************* /60 /********************************************************************************************************************************* 61 * Structures and Typedefs * 62 *********************************************************************************************************************************/ 63 63 typedef struct RTREQPOOLTHREAD 64 64 { -
trunk/src/VBox/Runtime/common/misc/reqqueue.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/req.h> 32 32 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/common/misc/s3.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/s3.h> 32 32 #include "internal/iprt.h" … … 46 46 47 47 48 /******************************************************************************* 49 * Structures and Typedefs *50 ******************************************************************************* /48 /********************************************************************************************************************************* 49 * Structures and Typedefs * 50 *********************************************************************************************************************************/ 51 51 typedef struct RTS3INTERNAL 52 52 { … … 73 73 74 74 75 /******************************************************************************* 76 * Defined Constants And Macros *77 ******************************************************************************* /75 /********************************************************************************************************************************* 76 * Defined Constants And Macros * 77 *********************************************************************************************************************************/ 78 78 79 79 /** Validates a handle and returns VERR_INVALID_HANDLE if not valid. */ … … 95 95 96 96 97 /******************************************************************************* 98 * Private RTS3 helper *99 ******************************************************************************* /97 /********************************************************************************************************************************* 98 * Private RTS3 helper * 99 *********************************************************************************************************************************/ 100 100 101 101 static char* rtS3Host(const char* pszBucket, const char* pszKey, const char* pszBaseUrl) … … 366 366 } 367 367 368 /******************************************************************************* 369 * Private XML helper * 370 *******************************************************************************/ 368 369 /********************************************************************************************************************************* 370 * Private XML helper * 371 *********************************************************************************************************************************/ 371 372 372 373 static xmlNodePtr rtS3FindNode(xmlNodePtr pNode, const char *pszName) … … 497 498 } 498 499 499 /******************************************************************************* 500 * Public RTS3 interface * 501 *******************************************************************************/ 500 501 /********************************************************************************************************************************* 502 * Public RTS3 interface * 503 *********************************************************************************************************************************/ 502 504 503 505 RTR3DECL(int) RTS3Create(PRTS3 ppS3, const char* pszAccessKey, const char* pszSecretKey, const char* pszBaseUrl, const char* pszUserAgent /* = NULL */) -
trunk/src/VBox/Runtime/common/misc/semspingpong.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/semaphore.h> 32 32 #include "internal/iprt.h" … … 38 38 39 39 40 /******************************************************************************* 41 * Defined Constants And Macros *42 ******************************************************************************* /40 /********************************************************************************************************************************* 41 * Defined Constants And Macros * 42 *********************************************************************************************************************************/ 43 43 /** 44 44 * Validation macro returns if invalid parameter. -
trunk/src/VBox/Runtime/common/misc/sg.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/sg.h> 32 32 #include <iprt/string.h> -
trunk/src/VBox/Runtime/common/misc/term.cpp
r56290 r57358 25 25 */ 26 26 27 /******************************************************************************* 28 * Header Files * 29 *******************************************************************************/ 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 30 31 #include <iprt/initterm.h> 31 32 #include "internal/iprt.h" … … 40 41 41 42 42 /******************************************************************************* 43 * Structures and Typedefs *44 ******************************************************************************* /43 /********************************************************************************************************************************* 44 * Structures and Typedefs * 45 *********************************************************************************************************************************/ 45 46 /** Pointer to a termination callback record. */ 46 47 typedef struct RTTERMCALLBACKREC *PRTTERMCALLBACKREC; … … 59 60 60 61 61 /******************************************************************************* 62 * Global Variables *63 ******************************************************************************* /62 /********************************************************************************************************************************* 63 * Global Variables * 64 *********************************************************************************************************************************/ 64 65 /** Execute once construct protecting lazy callback initialization. */ 65 66 static RTONCE g_InitTermCallbacksOnce = RTONCE_INITIALIZER; -
trunk/src/VBox/Runtime/common/misc/thread.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #define LOG_GROUP RTLOGGROUP_THREAD 32 32 #include <iprt/thread.h> … … 54 54 55 55 56 /******************************************************************************* 57 * Defined Constants And Macros *58 ******************************************************************************* /56 /********************************************************************************************************************************* 57 * Defined Constants And Macros * 58 *********************************************************************************************************************************/ 59 59 #ifdef IN_RING0 60 60 # define RT_THREAD_LOCK_RW() RTSpinlockAcquire(g_ThreadSpinlock) … … 70 70 71 71 72 /******************************************************************************* 73 * Global Variables *74 ******************************************************************************* /72 /********************************************************************************************************************************* 73 * Global Variables * 74 *********************************************************************************************************************************/ 75 75 /** The AVL thread containing the threads. */ 76 76 static PAVLPVNODECORE g_ThreadTree; … … 88 88 89 89 90 /******************************************************************************* 91 * Internal Functions *92 ******************************************************************************* /90 /********************************************************************************************************************************* 91 * Internal Functions * 92 *********************************************************************************************************************************/ 93 93 static void rtThreadDestroy(PRTTHREADINT pThread); 94 94 #ifdef IN_RING3 -
trunk/src/VBox/Runtime/common/misc/uri.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/uri.h> 32 32 … … 48 48 49 49 50 /******************************************************************************* 51 * Private RTUri helper *52 ******************************************************************************* /50 /********************************************************************************************************************************* 51 * Private RTUri helper * 52 *********************************************************************************************************************************/ 53 53 54 54 /* The following defines characters which have to be % escaped: … … 291 291 } 292 292 293 /******************************************************************************* 294 * Public RTUri interface * 295 *******************************************************************************/ 296 297 /******************************************************************************* 298 * Generic Uri methods * 299 *******************************************************************************/ 293 294 /********************************************************************************************************************************* 295 * Public RTUri interface * 296 *********************************************************************************************************************************/ 297 298 299 /********************************************************************************************************************************* 300 * Generic Uri methods * 301 *********************************************************************************************************************************/ 300 302 301 303 RTR3DECL(char *) RTUriCreate(const char *pszScheme, const char *pszAuthority, const char *pszPath, const char *pszQuery, const char *pszFragment) … … 578 580 } 579 581 580 /******************************************************************************* 581 * File Uri methods * 582 *******************************************************************************/ 582 583 /********************************************************************************************************************************* 584 * File Uri methods * 585 *********************************************************************************************************************************/ 583 586 584 587 RTR3DECL(char *) RTUriFileCreate(const char *pszPath)
Note:
See TracChangeset
for help on using the changeset viewer.