Makefile.in: Remove include of config/windows.in; that's done
authorTheodore Tso <tytso@mit.edu>
Wed, 12 Jun 1996 04:51:56 +0000 (04:51 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 12 Jun 1996 04:51:56 +0000 (04:51 +0000)
automatically by wconfig.

g_acquire_cred.c, g_oid_ops.c: Change to use new convention of
KRB5_CALLCONV and KRB5_DLLIMP instead of INTERFACE

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8309 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/gssapi/mechglue/ChangeLog
src/lib/gssapi/mechglue/Makefile.in
src/lib/gssapi/mechglue/g_acquire_cred.c
src/lib/gssapi/mechglue/g_oid_ops.c

index 78a13600fc7332a77e8a04234da5401a8dbaabc6..97558b1a2f44d3668b61af084db1d9ce7abf59e7 100644 (file)
@@ -1,3 +1,11 @@
+Wed Jun 12 00:50:32 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * Makefile.in: Remove include of config/windows.in; that's done
+               automatically by wconfig.
+
+       * g_acquire_cred.c, g_oid_ops.c: Change to use new convention of
+               KRB5_CALLCONV and KRB5_DLLIMP instead of INTERFACE
+
 Wed May 22 07:48:21 1996  Sam Hartman  <hartmans@mit.edu>
 
        * Makefile.in (libgssapi.$(STEXT)): Remove unnecessary install rule for libgssapi.a.
index bef8b28a4a603ffcd995e33efc48fd5fe4896f57..ae86a4fa7ebee8c4f9fa2da3e66a107b829430ca 100644 (file)
@@ -2,8 +2,6 @@ CFLAGS = $(CCOPTS) $(DEFS) -I. -I$(srcdir)
 
 ##DOSBUILDTOP = ..\..\..
 ##DOSLIBNAME=..\gssapi.$(LIBEXT)
-##DOSsrcdir = .
-##DOS!include $(BUILDTOP)\config\windows.in
 
 LIBDONE=DONE
 LIB_SUBDIRS=.
index dfa875c71665b3df7d6186a38eff4dcb410bab62..97bc8e0f51a3905cf0b9773ac5951246a0d4491c 100644 (file)
@@ -71,7 +71,7 @@ create_actual_mechs(creds)
 }
 
 
-OM_uint32 INTERFACE
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_acquire_cred(minor_status,
                  desired_name,
                  time_req,
@@ -378,8 +378,8 @@ error_out:
     return(status);
 }
 
-/* V2 interface */
-OM_uint32 INTERFACE
+/* V2 INTERFACE */
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_add_cred(minor_status, input_cred_handle,
                  desired_name, desired_mech, cred_usage,
                  initiator_time_req, acceptor_time_req,
index 38529858411975b5289ca3f6be8110072a976ef1..010e2a85b5737623a384378352060710d5d4596f 100644 (file)
@@ -31,7 +31,7 @@
 
 extern gss_mechanism *__gss_mechs_array;
 
-OM_uint32 INTERFACE
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_release_oid(minor_status, oid)
     OM_uint32  *minor_status;
     gss_OID    *oid;
@@ -60,7 +60,7 @@ gss_release_oid(minor_status, oid)
     return generic_gss_release_oid(minor_status, oid);
 }
 
-OM_uint32 INTERFACE
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_create_empty_oid_set(minor_status, oid_set)
     OM_uint32  *minor_status;
     gss_OID_set        *oid_set;
@@ -68,7 +68,7 @@ gss_create_empty_oid_set(minor_status, oid_set)
        return generic_gss_create_empty_oid_set(minor_status, oid_set);
 }
 
-OM_uint32 INTERFACE
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_add_oid_set_member(minor_status, member_oid, oid_set)
     OM_uint32  *minor_status;
     gss_OID    member_oid;
@@ -77,7 +77,7 @@ gss_add_oid_set_member(minor_status, member_oid, oid_set)
      return generic_gss_add_oid_set_member(minor_status, member_oid, oid_set);
 }
 
-OM_uint32 INTERFACE
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_test_oid_set_member(minor_status, member, set, present)
     OM_uint32  *minor_status;
     gss_OID    member;
@@ -87,7 +87,7 @@ gss_test_oid_set_member(minor_status, member, set, present)
     return generic_gss_test_oid_set_member(minor_status, member, set, present);
 }
 
-OM_uint32 INTERFACE
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_oid_to_str(minor_status, oid, oid_str)
     OM_uint32          *minor_status;
     gss_OID            oid;
@@ -96,7 +96,7 @@ gss_oid_to_str(minor_status, oid, oid_str)
     return generic_gss_oid_to_str(minor_status, oid, oid_str);
 }
 
-OM_uint32 INTERFACE
+KRB5_DLLIMP OM_uint32 KRB5_CALLCONV
 gss_str_to_oid(minor_status, oid_str, oid)
     OM_uint32          *minor_status;
     gss_buffer_t       oid_str;