@@ -520,17 +520,17 @@ by listing it in a DEF module).
520520
521521Here * calling* specifies the calling convention which can be one of:
522522
523- - default
524- - stdcall
525- - thiscall
526- - fastcall
527- - cdecl
528- - pascal
529- - register
530-
531- All but ' default' are Win32-only, and on Win32 ' default' maps to
532- ' cdecl' . If a Win32-only calling convention is specified on a
533- non-Windows platform then it is taken to be ' default' .
523+ - ` default `
524+ - ` stdcall `
525+ - ` thiscall `
526+ - ` fastcall `
527+ - ` cdecl `
528+ - ` pascal `
529+ - ` register `
530+
531+ All but ` default ` are Win32-only, and on Win32 ` default ` maps to
532+ ` cdecl ` . If a Win32-only calling convention is specified on a
533+ non-Windows platform then it is taken to be ` default ` .
534534
535535#### The Java binding string
536536
@@ -540,7 +540,7 @@ The Java binding string has the following form:
540540
541541Here * className* is the qualified name of the Java class to bind to.
542542
543- Here * functionType* is either empty, or ' get' or ' set' , which are
543+ Here * functionType* is either empty, or ` get ` or ` set ` , which are
544544currently used for getting and setting member fields of a Java class.
545545
546546For example
@@ -552,19 +552,19 @@ are binding strings for setting and getting the `time` field of a
552552Calendar object.
553553
554554Here * function* specifies the name of the method or field to bind to. The
555- function ' new' may be used to call a class constructor. * function* also
555+ function ` new ` may be used to call a class constructor. * function* also
556556includes the specification of function signature, according to the
557557[ standard rules for forming these] ( http://journals.ecs.soton.ac.uk/java/tutorial/native1.1/implementing/method.html )
558558when calling the JNI.
559559
560560Here * calling* specifies the calling convention which can be one of:
561561
562- - instance
563- - static
564- - nonvirtual
562+ - ` instance `
563+ - ` static `
564+ - ` nonvirtual `
565565
566566Instance and nonvirtual calling conventions require instances of the given
567- java class, so the foreign handler declaration will always require a Java
567+ Java class, so the foreign handler declaration will always require a Java
568568object parameter.
569569
570570### Properties
0 commit comments