Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ShareInfoCtr0 (0.06 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    	version(3.0)
    ]
    interface srvsvc
    {
    	import "../rpc.idl";
    
    	typedef struct {
    		[string] wchar_t *netname;
    	} ShareInfo0;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo0 *array;
    	} ShareInfoCtr0;
    
    	typedef struct {
    		[string] wchar_t *netname;
    		int type;
    		[string] wchar_t *remark;
    	} ShareInfo1;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo1 *array;
    	} ShareInfoCtr1;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    	version(3.0)
    ]
    interface srvsvc
    {
    	import "../rpc.idl";
    
    	typedef struct {
    		[string] wchar_t *netname;
    	} ShareInfo0;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo0 *array;
    	} ShareInfoCtr0;
    
    	typedef struct {
    		[string] wchar_t *netname;
    		int type;
    		[string] wchar_t *remark;
    	} ShareInfo1;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo1 *array;
    	} ShareInfoCtr1;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/msrpc/srvsvcTest.java

            verify(mockDeferredBuffer).enc_ndr_small((byte) 2);
        }
    
        @Test
        void testShareInfoCtr0EncodeWithArray() throws NdrException {
            srvsvc.ShareInfoCtr0 ctr0 = new srvsvc.ShareInfoCtr0();
            ctr0.count = 2;
            ctr0.array = new srvsvc.ShareInfo0[2];
            ctr0.array[0] = new srvsvc.ShareInfo0();
            ctr0.array[0].netname = "Share1";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java

                }
            }
        }
    
        /**
         * Container for ShareInfo0 structures.
         */
        public static class ShareInfoCtr0 extends NdrObject {
    
            /**
             * Default constructor for ShareInfoCtr0.
             */
            public ShareInfoCtr0() {
            }
    
            /**
             * The number of shares in the array.
             */
            /**
             * The number of shares in the array.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

                }
            }
        }
    
        /**
         * Container for ShareInfo0 structures.
         */
        public static class ShareInfoCtr0 extends NdrObject {
    
            /**
             * Default constructor for ShareInfoCtr0.
             */
            public ShareInfoCtr0() {
            }
    
            /**
             * The number of shares in the array.
             */
            /**
             * The number of shares in the array.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
Back to top