Home
last modified time | relevance | path

Searched refs:extensions (Results 1 – 25 of 90) sorted by relevance

1234

/reactos/dll/win32/ole32/
H A Drpc.c158 unsigned char extensions[1]; member
164 unsigned char extensions[1]; member
922 orpcthat.extensions = NULL; in ClientRpcChannelBuffer_SendReceive()
956 … orpcthat.extensions && first_wire_orpc_extent ? orpcthat.extensions->size : 0, in ClientRpcChannelBuffer_SendReceive()
1195 extensions->extent = NULL; in unmarshal_ORPC_EXTENT_ARRAY()
1208 if (extensions->size > 256) in unmarshal_ORPC_EXTENT_ARRAY()
1255 orpcthis->extensions = NULL; in unmarshal_ORPCTHIS()
1259 if (orpcthis->extensions) in unmarshal_ORPCTHIS()
1306 orpcthat->extensions = NULL; in unmarshal_ORPCTHAT()
1310 if (orpcthat->extensions) in unmarshal_ORPCTHAT()
[all …]
H A Ddcom.idl83 [unique] ORPC_EXTENT_ARRAY *extensions;
88 [unique] ORPC_EXTENT_ARRAY *extensions;
/reactos/sdk/lib/3rdparty/freetype/src/tools/ftrandom/
H A Dftrandom.c243 char** extensions ) in extmatch() argument
249 if ( !extensions ) in extmatch()
258 for ( i = 0; extensions[i] != NULL; i++ ) in extmatch()
259 if ( strcasecmp( pt + 1, extensions[i] ) == 0 || in extmatch()
260 strcasecmp( pt, extensions[i] ) == 0 ) in extmatch()
349 char** extensions ) in FindFonts() argument
381 if ( !extensions || extmatch( buffer, extensions ) ) in FindFonts()
H A DREADME5 of extensions of fonts to be tested. It will randomly pick a font, copy it,
47 The default font extensions tested by ftrandom are
/reactos/
H A D.gitattributes4 # Files with these extensions are accepted source files inside the ReactOS
33 # Files with these extensions end up in the built ReactOS system, so they
54 # Files with these extensions are accepted binary files inside the ReactOS
81 # All other extensions not explicitly mentioned here are left for Git to
H A D.gitpod.yml17 extensions:
/reactos/subsystems/mvdm/config/
H A Dwin.ini3 [extensions] section
4 [mci extensions]
/reactos/win32ss/user/winsrv/
H A Dconsrv.cmake43 # Explicitly enable MS extensions to be able to use unnamed (anonymous) nested structs.
51 #target_compile_options(consrv PRIVATE "-fms-extensions")
52 set_source_files_properties(${CONSRV_SOURCE} PROPERTIES COMPILE_OPTIONS "-fms-extensions")
/reactos/dll/cpl/desk/
H A Dbackground.c616 LPTSTR extensions; in OnBrowseButton() local
642 extensions = GdipGetSupportedFileExtensions(); in OnBrowseButton()
643 if (!extensions) in OnBrowseButton()
648 buffersize = (_tcslen(extensions) * 2 + 6) * sizeof(TCHAR) + sizeof(filterdesc); in OnBrowseButton()
653 HeapFree(GetProcessHeap(), 0, extensions); in OnBrowseButton()
660 …(FAILED(StringCbPrintfEx(c, sizeRemain, &c, &sizeRemain, 0, L"%ls (%ls)", filterdesc, extensions))) in OnBrowseButton()
662 HeapFree(GetProcessHeap(), 0, extensions); in OnBrowseButton()
670 if (FAILED(StringCbPrintfEx(c, sizeRemain, &c, &sizeRemain, 0, L"%ls", extensions))) in OnBrowseButton()
672 HeapFree(GetProcessHeap(), 0, extensions); in OnBrowseButton()
677 HeapFree(GetProcessHeap(), 0, extensions); in OnBrowseButton()
/reactos/dll/3rdparty/mbedtls/
H A Dx509write_csr.c98 mbedtls_asn1_free_named_data_list( &ctx->extensions ); in mbedtls_x509write_csr_free()
123 return mbedtls_x509_set_extension( &ctx->extensions, oid, oid_len, in mbedtls_x509write_csr_set_extension()
216 ctx->extensions ) ); in x509write_csr_der_internal()
H A Dx509write_crt.c97 mbedtls_asn1_free_named_data_list( &ctx->extensions ); in mbedtls_x509write_crt_free()
171 return( mbedtls_x509_set_extension( &ctx->extensions, oid, oid_len, in mbedtls_x509write_crt_set_extension()
428 buf, ctx->extensions ) ); in mbedtls_x509write_crt_der()
/reactos/sdk/lib/ucrt/exec/
H A Dspawnv.cpp350 static extension_type const extensions[4] = in common_spawnv() local
360 extension_type const* const first_extension = extensions; in common_spawnv()
361 extension_type const* const last_extension = first_extension + _countof(extensions); in common_spawnv()
/reactos/modules/rostests/winetests/opengl32/
H A Dopengl.c96 static BOOL gl_extension_supported(const char *extensions, const char *extension_string) in gl_extension_supported() argument
100 while (*extensions) in gl_extension_supported()
105 while (isspace(*extensions)) in gl_extension_supported()
106 ++extensions; in gl_extension_supported()
107 start = extensions; in gl_extension_supported()
108 while (!isspace(*extensions) && *extensions) in gl_extension_supported()
109 ++extensions; in gl_extension_supported()
111 len = extensions - start; in gl_extension_supported()
931 const char *extensions = (const char*)glGetString(GL_EXTENSIONS); in test_getprocaddress() local
935 if (!extensions) in test_getprocaddress()
[all …]
/reactos/dll/win32/msi/
H A Dclasses.c386 list_add_tail( &package->extensions, &ext->entry ); in load_extension()
422 LIST_FOR_EACH_ENTRY( ext, &package->extensions, MSIEXTENSION, entry ) in load_given_extension()
538 LIST_FOR_EACH_ENTRY( ext, &package->extensions, MSIEXTENSION, entry ) in iterate_all_extensions()
640 !list_empty( &package->extensions ) || in load_classes_and_such()
1018 LIST_FOR_EACH_ENTRY( extension, &package->extensions, MSIEXTENSION, entry ) in has_one_extension_installed()
1068 LIST_FOR_EACH_ENTRY( extension, &package->extensions, MSIEXTENSION, entry ) in has_extensions()
1079 LIST_FOR_EACH_ENTRY( extension, &package->extensions, MSIEXTENSION, entry ) in has_all_extensions_removed()
1217 LIST_FOR_EACH_ENTRY( ext, &package->extensions, MSIEXTENSION, entry ) in ACTION_RegisterExtensionInfo()
1321 LIST_FOR_EACH_ENTRY( ext, &package->extensions, MSIEXTENSION, entry ) in ACTION_UnregisterExtensionInfo()
/reactos/dll/win32/mswsock/
H A DCMakeLists.txt7 extensions.c
/reactos/dll/opengl/
H A DMesa_for_ReactOS.txt1 Windows provides OpenGL 1.1 with platform-specific extensions (WGL) in its
/reactos/modules/rosapps/applications/explorer-old/doc/
H A DTODO.txt45 <m-fuchs> tinus: we should think about installing some default shell extensions
46 <tinus_> m-fuchs: perhaps, but it'd be nice if they actually were shell extensions
/reactos/sdk/lib/atl/
H A Datlimage.h748 CString extensions; in BuildCodecFilterString() local
757 extensions += TEXT(';'); in BuildCodecFilterString()
760 extensions += ext; in BuildCodecFilterString()
764 strFilter += extensions; in BuildCodecFilterString()
775 CString extensions(pCodecs[i].FilenameExtension); in BuildCodecFilterString()
780 strFilter += extensions; in BuildCodecFilterString()
783 strFilter += extensions; in BuildCodecFilterString()
/reactos/dll/3rdparty/libxslt/
H A DCMakeLists.txt19 extensions.c
/reactos/sdk/include/reactos/libs/mbedtls/
H A Dx509_csr.h104 mbedtls_asn1_named_data *extensions; member
/reactos/sdk/include/c++/stlport/
H A Dhash_map35 # error The hash_map and hash_multimap class are STLport extensions.
H A Dhash_set35 # error The hash_set and hash_multiset class are STLport extensions.
/reactos/dll/win32/windowscodecs/
H A Dregsvr.c61 LPCSTR extensions; member
78 LPCSTR extensions; member
272 if (list->extensions) { in register_decoders()
274 (const BYTE*)list->extensions, in register_decoders()
275 strlen(list->extensions) + 1); in register_decoders()
487 if (list->extensions) { in register_encoders()
489 (const BYTE*)list->extensions, in register_encoders()
490 strlen(list->extensions) + 1); in register_encoders()
/reactos/dll/opengl/mesa/
H A Dmisc.c317 static char *extensions = "GL_EXT_paletted_texture GL_EXT_bgra GL_WIN_swap_hint"; in gl_GetString() local
337 return (GLubyte *) extensions; in gl_GetString()
/reactos/boot/freeldr/freeldr/
H A Dfreeldr_gcc.lds119 /* SGI/MIPS DWARF 2 extensions. */

1234